Class ScalesOptions
- java.lang.Object
-
- org.pepstock.charba.client.configuration.ConfigurationOptions
-
- org.pepstock.charba.client.configuration.ScalesOptions
-
- All Implemented Interfaces:
HasAnimation,ConfigurationElement,AddHandlerEventHandler,EventHandler,RemoveHandlerEventHandler
- Direct Known Subclasses:
BarOptions,BubbleMapOptions,BubbleOptions,ChoroplethOptions,LineOptions,MatrixOptions,PolarAreaOptions,RadarOptions,SankeyOptions,ScatterOptions,StackedOptions,TimeSeriesBarOptions,TimeSeriesLineOptions
public abstract class ScalesOptions extends ConfigurationOptions
Configuration of chart with multiple scales.- Author:
- Andrea "Stock" Stocchero
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedScalesOptions(IsChart chart, IsDefaultScaledOptions defaultValues)Builds the object storing the chart instance and default values.protectedScalesOptions(IsChart chart, IsDefaultScaledOptions defaultValues, boolean createScale)Builds the object storing the chart instance and default values and creating a scale options if requested.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected AxisgetAxisById(int id)Returns the axis by the unique CHARBA id of scale ornullif not axis.IsChartgetChart()Returns the chart instanceprotected TgetConfiguration()Returns the configuration element.ScalesgetScales()Returns the scales element.ChartEnvelop<NativeObject>loadNativeObject(ChartEnvelop<NativeObject> envelop)Returns the native object instance inside an envelop.
It can be called only fromorg.pepstock.charba.clientpackage.voidmerge(NativeObjectContainer source, String property)Merge a native object in the this one with a specific property name.
This is used by plugins implementation (native java script ones) when they are not using the standard way to add plugin configuration in the options of chart.protected voidsetConfiguration(T configuration)StringtoJSON()Returns the JSON representation of the object.-
Methods inherited from class org.pepstock.charba.client.configuration.ConfigurationOptions
afterAxisConfigurationUpdate, afterConfigurationUpdate, beforeAxisConfigurationUpdate, beforeConfigurationUpdate, getAnimationContainer, getAspectRatio, getBackgroundColor, getBackgroundColorAsString, getBorderColor, getBorderColorAsString, getColor, getColorAsString, getDatasets, getDevicePixelRatio, getElements, getEvents, getFiller, getFont, getHover, getInteraction, getLayout, getLegend, getLocale, getPlugins, getResizeDelay, getSubtitle, getTitle, getTooltips, hasAxisClickHandlers, hasAxisEnterHandlers, hasAxisHoverHandlers, hasAxisLeaveHandlers, hasDatasetSelectionHandlers, hasSubtitleClickHandlers, hasSubtitleEnterHandlers, hasSubtitleLeaveHandlers, hasTitleClickHandlers, hasTitleEnterHandlers, hasTitleLeaveHandlers, isDestroyOnDetach, isDrawOnAttach, isMaintainAspectRatio, isResponsive, load, loadOptions, onAdd, onRemove, setAspectRatio, setBackgroundColor, setBackgroundColor, setBorderColor, setBorderColor, setChartOptions, setColor, setColor, setDestroyOnDetach, setDevicePixelRatio, setDrawOnAttach, setEvents, setLocale, setMaintainAspectRatio, setResizeDelay, setResponsive
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.pepstock.charba.client.configuration.HasAnimation
getAnimation, getAnimations, getTransitions, isAnimationEnabled, setAnimationEnabled
-
-
-
-
Constructor Detail
-
ScalesOptions
protected ScalesOptions(IsChart chart, IsDefaultScaledOptions defaultValues)
Builds the object storing the chart instance and default values.- Parameters:
chart- chart instancedefaultValues- defaults options
-
ScalesOptions
protected ScalesOptions(IsChart chart, IsDefaultScaledOptions defaultValues, boolean createScale)
Builds the object storing the chart instance and default values and creating a scale options if requested.- Parameters:
chart- chart instancedefaultValues- defaults optionscreateScale- iftruecreates a scale object reading the configuration otherwise it leaves the scale instance tonullto allow to be set later.
-
-
Method Detail
-
getScales
public Scales getScales()
Returns the scales element.- Returns:
- the scales
-
getAxisById
protected final Axis getAxisById(int id)
Description copied from class:ConfigurationOptionsReturns the axis by the unique CHARBA id of scale ornullif not axis.- Overrides:
getAxisByIdin classConfigurationOptions- Parameters:
id- the unique CHARBA id of scale- Returns:
- the axis or
nullif not axis.
-
setConfiguration
protected final void setConfiguration(T configuration)
- Parameters:
configuration- the configuration to set
-
getConfiguration
protected final T getConfiguration()
Returns the configuration element.- Returns:
- the configuration element.
-
merge
public final void merge(NativeObjectContainer source, String property)
Merge a native object in the this one with a specific property name.
This is used by plugins implementation (native java script ones) when they are not using the standard way to add plugin configuration in the options of chart.- Parameters:
source- native object container to addproperty- property name
-
toJSON
public final String toJSON()
Returns the JSON representation of the object.- Returns:
- the JSON representation of the object.
-
loadNativeObject
public final ChartEnvelop<NativeObject> loadNativeObject(ChartEnvelop<NativeObject> envelop)
Returns the native object instance inside an envelop.
It can be called only fromorg.pepstock.charba.clientpackage.- Parameters:
envelop- envelop instance which will contain the native object- Returns:
- the envelop, passed as argument, loaded with the native object
-
getChart
public final IsChart getChart()
Returns the chart instance- Returns:
- the chart
-
-