Interface AfterDatasetDrawHook
-
public interface AfterDatasetDrawHook
Called after the 'chart' datasets at the given 'args.index' have been drawn (datasets are drawn in the reverse order).
Note that this hook will not be called if the datasets drawing has been previously cancelled.- Author:
- Andrea "Stock" Stocchero
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
onAfterDatasetDraw(IsChart chart, PluginDatasetArgument item)
Called after the 'chart' datasets at the given 'args.index' have been drawn (datasets are drawn in the reverse order).
Note that this hook will not be called if the datasets drawing has been previously cancelled.
-
-
-
Method Detail
-
onAfterDatasetDraw
void onAfterDatasetDraw(IsChart chart, PluginDatasetArgument item)
Called after the 'chart' datasets at the given 'args.index' have been drawn (datasets are drawn in the reverse order).
Note that this hook will not be called if the datasets drawing has been previously cancelled.- Parameters:
chart
- the chart instance.item
- the dataset item.
-
-