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