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