Class CartesianTimeSeriesAxis
- java.lang.Object
- 
- org.pepstock.charba.client.configuration.Axis
- 
- org.pepstock.charba.client.configuration.CartesianAxis<CartesianTimeTick>
- 
- org.pepstock.charba.client.configuration.CartesianTimeAxis
- 
- org.pepstock.charba.client.configuration.CartesianTimeSeriesAxis
 
 
 
 
- 
 public class CartesianTimeSeriesAxis extends CartesianTimeAxis This object is used to map defined axis as time series. This is used to have time series charts.- Author:
- Andrea "Stock" Stocchero
 
- 
- 
Constructor SummaryConstructors Modifier Constructor Description CartesianTimeSeriesAxis(IsChart chart)Builds the object storing the chart instance.CartesianTimeSeriesAxis(IsChart chart, String id)Builds the object storing the chart instance.CartesianTimeSeriesAxis(IsChart chart, String id, AxisKind kind)Builds the object storing the chart instance and axis type.CartesianTimeSeriesAxis(IsChart chart, AxisKind kind)Builds the object storing the chart instance and axis type.CartesianTimeSeriesAxis(IsChart chart, ScaleId id)Builds the object storing the chart instance.protectedCartesianTimeSeriesAxis(IsChart chart, ScaleId id, AxisType type, AxisKind kind)Builds the object storing the chart instance and cartesian axis type.CartesianTimeSeriesAxis(IsChart chart, ScaleId id, AxisKind kind)Builds the object storing the chart instance and axis type.
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description IsChartgetChart()Returns the chart instanceprotected TgetConfiguration()Returns the configuration 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.CartesianTimeAxisgetAdapters, getMax, getMin, getTicks, getTime, setMax, setMin
 - 
Methods inherited from class org.pepstock.charba.client.configuration.CartesianAxisgetBounds, getGrid, getPosition, getStack, getStackWeight, getTitle, isOffset, isSingleStacked, isStacked, setBounds, setOffset, setPosition, setSingleStacked, setStack, setStacked, setStackWeight
 - 
Methods inherited from class org.pepstock.charba.client.configuration.AxisgetAxis, getAxisBuildTicksCallback, getAxisCalculateLabelRotationCallback, getAxisDataLimitsCallback, getAxisDimensionsCallback, getAxisFitCallback, getAxisTickToLabelConversionCallback, getAxisUpdateCallback, getBackgroundColor, getBackgroundColorAsString, getCharbaId, getDisplay, getId, getType, getWeight, isAlignToPixels, isReverse, setAlignToPixels, setAxisBuildTicksCallback, setAxisCalculateLabelRotationCallback, setAxisDataLimitsCallback, setAxisDimensionsCallback, setAxisFitCallback, setAxisTickToLabelConversionCallback, setAxisUpdateCallback, setBackgroundColor, setBackgroundColor, setDisplay, setDisplay, setReverse, setWeight
 
- 
 
- 
- 
- 
Constructor Detail- 
CartesianTimeSeriesAxispublic CartesianTimeSeriesAxis(IsChart chart) Builds the object storing the chart instance. Axis type is X by default.- Parameters:
- chart- chart instance
 
 - 
CartesianTimeSeriesAxispublic CartesianTimeSeriesAxis(IsChart chart, String id) Builds the object storing the chart instance. Axis type is X by default.- Parameters:
- chart- chart instance
- id- axis id
 
 - 
CartesianTimeSeriesAxispublic CartesianTimeSeriesAxis(IsChart chart, ScaleId id) Builds the object storing the chart instance. Axis type is X by default.- Parameters:
- chart- chart instance
- id- axis id
 
 - 
CartesianTimeSeriesAxispublic CartesianTimeSeriesAxis(IsChart chart, AxisKind kind) Builds the object storing the chart instance and axis type.- Parameters:
- chart- chart instance
- kind- axis kind
 
 - 
CartesianTimeSeriesAxispublic CartesianTimeSeriesAxis(IsChart chart, String id, AxisKind kind) Builds the object storing the chart instance and axis type.- Parameters:
- chart- chart instance
- id- axis id
- kind- axis kind
 
 - 
CartesianTimeSeriesAxispublic CartesianTimeSeriesAxis(IsChart chart, ScaleId id, AxisKind kind) Builds the object storing the chart instance and axis type.- Parameters:
- chart- chart instance
- id- axis id
- kind- axis kind
 
 
- 
 - 
Method Detail- 
setConfigurationprotected final void setConfiguration(T configuration) - Parameters:
- configuration- the configuration to set
 
 - 
getConfigurationprotected final T getConfiguration() Returns the configuration element.- Returns:
- the configuration element.
 
 - 
mergepublic 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 add
- property- property name
 
 - 
toJSONpublic final String toJSON() Returns the JSON representation of the object.- Returns:
- the JSON representation of the object.
 
 - 
loadNativeObjectpublic 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
 
 - 
getChartpublic final IsChart getChart() Returns the chart instance- Returns:
- the chart
 
 
- 
 
-