Interface IsScriptableFontProvider<T extends ChartContext>
- 
- Type Parameters:
- T- type of scriptable context
 - All Known Implementing Classes:
- CartesianCategoryTick,- CartesianLinearTick,- CartesianLogarithmicTick,- CartesianTimeTick,- DataLabelsOptions,- Label,- LabelItem,- LineLabel,- RadialLinearTick,- RadialPointLabels,- Subtitle,- Title
 
 public interface IsScriptableFontProvider<T extends ChartContext>Map an object which contains a font instance which can be set by callback,FontCallback.- Author:
- Andrea "Stock" Stocchero
 
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description FontCallback<T>getFontCallback()Returns theFontCallbackif it has been set ornull.voidsetFont(FontCallback<T> fontCallback)Sets the font callback.voidsetFont(NativeCallback fontCallback)Sets the font callback.
 
- 
- 
- 
Method Detail- 
getFontCallbackFontCallback<T> getFontCallback() Returns theFontCallbackif it has been set ornull.- Returns:
- the FontCallbackif it has been set ornull.
 
 - 
setFontvoid setFont(FontCallback<T> fontCallback) Sets the font callback.- Parameters:
- fontCallback- the font callback.
 
 - 
setFontvoid setFont(NativeCallback fontCallback) Sets the font callback.- Parameters:
- fontCallback- the font callback.
 
 
- 
 
-