public interface TooltipFooterCallback
| Modifier and Type | Method and Description |
|---|---|
List<String> |
onAfterFooter(IsChart chart,
List<TooltipItem> items)
Text to render after the footer section.
|
List<String> |
onBeforeFooter(IsChart chart,
List<TooltipItem> items)
Returns text to render before the footer section.
|
List<String> |
onFooter(IsChart chart,
List<TooltipItem> items)
Returns text to render as the footer of the tooltip.
|
List<String> onBeforeFooter(IsChart chart, List<TooltipItem> items)
chart - chart instanceitems - list of all tooltip itemsnull or empty list, it will be ignored.List<String> onFooter(IsChart chart, List<TooltipItem> items)
chart - chart instanceitems - list of all tooltip itemsnull or empty list, it will be ignored.List<String> onAfterFooter(IsChart chart, List<TooltipItem> items)
chart - chart instanceitems - list of all tooltip itemsnull or empty list, it will be ignored.