Interface IsNumericTick
-
- All Known Subinterfaces:
IsLinearTick
- All Known Implementing Classes:
CartesianLinearTick
,CartesianLogarithmicTick
,RadialLinearTick
public interface IsNumericTick
Common methods for numeric ticks (linear/log cartesian and radial).- Author:
- Andrea "Stock" Stocchero
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description IsNumberFormat
getNumberFormat()
Returns the number format instance.default NumberFormatCallback
getNumberFormatCallback()
Returns the callback to set the number formatting options.org.pepstock.charba.client.configuration.NumericTickOptionsHandler
getTickOptionsHandler()
Returns the linear tick options handler instance, for callbacks.default void
setNumberFormat(NativeCallback numberFormatCallback)
Sets the number formatting options.default void
setNumberFormat(NumberFormatCallback numberFormatCallback)
Sets the number formatting options.
-
-
-
Method Detail
-
getTickOptionsHandler
org.pepstock.charba.client.configuration.NumericTickOptionsHandler getTickOptionsHandler()
Returns the linear tick options handler instance, for callbacks.- Returns:
- the linear tick options handler instance, for callbacks
-
getNumberFormat
IsNumberFormat getNumberFormat()
Returns the number format instance.- Returns:
- the number format instance
-
getNumberFormatCallback
default NumberFormatCallback getNumberFormatCallback()
Returns the callback to set the number formatting options.- Returns:
- the callback instance to use
-
setNumberFormat
default void setNumberFormat(NumberFormatCallback numberFormatCallback)
Sets the number formatting options.- Parameters:
numberFormatCallback
- the callback instance to use
-
setNumberFormat
default void setNumberFormat(NativeCallback numberFormatCallback)
Sets the number formatting options.- Parameters:
numberFormatCallback
- the callback instance to use
-
-