Uses of Class
org.pepstock.charba.client.configuration.Axis
-
Packages that use Axis Package Description org.pepstock.charba.client Main package with all charts implementation, global classes and common interfaces.org.pepstock.charba.client.callbacks All callbacks interfaces to be implemented, also to use the scriptable options of CHART.JS.org.pepstock.charba.client.configuration Contains all elements to configure a chart instance (know as chart options at instance level).org.pepstock.charba.client.events Contains all events to interact with chart instance.org.pepstock.charba.client.geo Contains all classes to activate the GEO controllers (AKAchartjs-chart-geo.js) for CHART.js.org.pepstock.charba.client.gwt.widgets Contains all charts classes wrapped as GWT widget in order to enable to use inside to GWT UIBinder.org.pepstock.charba.client.impl.callbacks Contains some callbacks implementations, available out-of-the box.org.pepstock.charba.client.sankey Contains all classes to activate the Sankey controller (AKAchartjs-chart-sankey.js) for CHART.js. -
-
Uses of Axis in org.pepstock.charba.client
Methods in org.pepstock.charba.client with parameters of type Axis Modifier and Type Method Description voidAbstractChart. checkAxes(Axis... axes)voidIsChart. checkAxes(Axis... axes)Checks if axes, requested to be stored, are an acceptable type or amount.
If a axis type or the amount of axes are not consistent for the chart, aIllegalArgumentExceptionwill be thrown.default booleanHasAxes. checkAxis(Axis axis)Returnstrueif the axis can be managed by a this chart type.default booleanHasCartesianAxes. checkAxis(Axis axis)Returnstrueif the axis can be managed by a this chart type.default booleanHasRadialAxis. checkAxis(Axis axis)Returnstrueif the axis can be managed by a this chart type. -
Uses of Axis in org.pepstock.charba.client.callbacks
Methods in org.pepstock.charba.client.callbacks that return Axis Modifier and Type Method Description AxisScaleContext. getAxis()Returns the axis instance where the callback must be invoked.Methods in org.pepstock.charba.client.callbacks with parameters of type Axis Modifier and Type Method Description voidAxisBuildTicksCallback. onAfterBuildTicks(Axis axis, AxisItem item)Callback that runs after ticks are created.voidAxisCalculateLabelRotationCallback. onAfterCalculateLabelRotation(Axis axis, AxisItem item)Callback that runs after tick rotation is determined.voidAxisDataLimitsCallback. onAfterDataLimits(Axis axis, AxisItem item)Callback that runs after data limits are determined.voidAxisFitCallback. onAfterFit(Axis axis, AxisItem item)Callback that runs after the scale fits to the canvas.voidAxisDimensionsCallback. onAfterSetDimensions(Axis axis, AxisItem item)Callback that runs after dimensions are set.voidAxisTickToLabelConversionCallback. onAfterTickToLabelConversion(Axis axis, AxisItem item)Callback that runs after ticks are converted in the strings.voidAxisUpdateCallback. onAfterUpdate(Axis axis, AxisItem item)Callback that runs at the end of the update process.voidAxisBuildTicksCallback. onBeforeBuildTicks(Axis axis, AxisItem item)Callback that runs before ticks are created.voidAxisCalculateLabelRotationCallback. onBeforeCalculateLabelRotation(Axis axis, AxisItem item)Callback that runs before tick rotation is determined.voidAxisDataLimitsCallback. onBeforeDataLimits(Axis axis, AxisItem item)Callback that runs before data limits are determined.voidAxisFitCallback. onBeforeFit(Axis axis, AxisItem item)Callback that runs before the scale fits to the canvas.voidAxisDimensionsCallback. onBeforeSetDimensions(Axis axis, AxisItem item)Callback that runs before dimensions are set.voidAxisTickToLabelConversionCallback. onBeforeTickToLabelConversion(Axis axis, AxisItem item)Callback that runs before ticks are converted in the strings.voidAxisUpdateCallback. onBeforeUpdate(Axis axis, AxisItem item)Callback called before the update process starts.ObjectCategoryTickCallback. onCallback(Axis axis, String value, int index, List<String> values)Changes the tick marks to include information about the data type.ObjectPointLabelCallback. onCallback(Axis axis, String item, int index)Callback function to transform data labels to point labels.ObjectTickCallback. onCallback(Axis axis, double value, int index, List<Double> values)Changes the tick marks to include information about the data type.ObjectTimeTickCallback. onCallback(Axis axis, Date value, String label, int index, List<ScaleTickItem> values)Changes the tick marks to include information about the data type.Constructors in org.pepstock.charba.client.callbacks with parameters of type Axis Constructor Description ScaleContext(Axis axis, NativeObject nativeObject)Creates the object with an envelop of the native object instance to be wrapped. -
Uses of Axis in org.pepstock.charba.client.configuration
Subclasses of Axis in org.pepstock.charba.client.configuration Modifier and Type Class Description classCartesianAxis<T extends org.pepstock.charba.client.configuration.CartesianTick>Axes are an integral part of a chart.classCartesianCategoryAxisThis object is used to map defined axis as category.classCartesianLinearAxisThis object is used to map defined axis as linear.classCartesianLogarithmicAxisThis object is used to map defined axis as logarithmic.classCartesianTimeAxisThis object is used to map defined axis as time.classCartesianTimeSeriesAxisThis object is used to map defined axis as time series.classRadialAxisRadial axes are used specifically for the radar and polar area chart types.
These axes overlay the chart area, rather than being positioned on one of the edges.
The linear scale is use to chart numerical data.
As the name suggests, linear interpolation is used to determine where a value lies in relation the center of the axis.Methods in org.pepstock.charba.client.configuration that return Axis Modifier and Type Method Description AxisIsLinearTick. getAxis()Returns the axis instance.protected AxisAbstractPieOptions. getAxisById(int id)protected AxisConfigurationOptions. getAxisById(int id)Returns the axis by the unique CHARBA id of scale ornullif not axis.AxisScales. getAxisById(String scaleId)Returns the scale with the id passed as argument ornullif not exist.AxisScales. getAxisById(ScaleId scaleId)Returns the scale with the id passed as argument ornullif not exist.protected AxisScalesOptions. getAxisById(int id)AxisCartesianLinearAxis. getAxisElement()AxisCartesianLogarithmicAxis. getAxisElement()AxisIsNumericAxis. getAxisElement()Returns the axis instance.AxisRadialAxis. getAxisElement()Methods in org.pepstock.charba.client.configuration that return types with arguments of type Axis Modifier and Type Method Description List<Axis>Scales. getAxes()Returns the list of X axes.Methods in org.pepstock.charba.client.configuration with parameters of type Axis Modifier and Type Method Description protected voidConfigurationOptions. afterAxisConfigurationUpdate(Axis axis)Invoked after the axis options has been updated.protected voidConfigurationOptions. beforeAxisConfigurationUpdate(Axis axis)Invoked before the axis options are going to be updated.voidScales. setAxes(Axis... axes)Sets an array of X axes.voidStackedScales. setAxes(Axis... axes)voidTimeSeriesScales. setAxes(Axis... axes) -
Uses of Axis in org.pepstock.charba.client.events
Constructors in org.pepstock.charba.client.events with parameters of type Axis Constructor Description AxisClickEvent(BaseNativeEvent nativeEvent, ScaleItem item, Axis axis, ScaleValueItem value)Creates the event with axis related to the clickAxisEnterEvent(BaseNativeEvent nativeEvent, ScaleItem item, Axis axis)Creates the event with axis related to the enterAxisHoverEvent(BaseNativeEvent nativeEvent, ScaleItem item, Axis axis)Creates the event with axis related to the hoverAxisLeaveEvent(BaseNativeEvent nativeEvent, ScaleItem item, Axis axis)Creates the event with axis related to the leave -
Uses of Axis in org.pepstock.charba.client.geo
Subclasses of Axis in org.pepstock.charba.client.geo Modifier and Type Class Description classColorAxisThe coloring of the nodes will be done with a special color scale.
Provides the elements, as colored legend, which can provide the how the values are distributed on map.classColorLogarithmicAxisThe coloring of the nodes will be done with a special color scale, for logarithmic data.
Provides the elements, as colored legend, which can provide the how the values are distributed on map.classProjectionAxisA map projection is a way to flatten a globe's surface into a plane in order to make a map.
This requires a systematic transformation of the latitudes and longitudes of locations from the surface of the globe into locations on a plane.
This is the scale which is managing the map projection.classSizeAxisThe scale is used to map the values to symbol radius size.
Provides the elements, as colored legend, which can provide the how the values are distributed on map.classSizeLogarithmicAxisThe scale is used to map the values to symbol radius size, for logarithmic data.
Provides the elements, as colored legend, which can provide the how the values are distributed on map.Methods in org.pepstock.charba.client.geo with parameters of type Axis Modifier and Type Method Description protected voidBubbleMapOptions. afterAxisConfigurationUpdate(Axis axis)protected voidChoroplethOptions. afterAxisConfigurationUpdate(Axis axis)voidBubbleMapChart. checkAxes(Axis... axes)voidChoroplethChart. checkAxes(Axis... axes)booleanBubbleMapChart. checkAxis(Axis axis)booleanChoroplethChart. checkAxis(Axis axis) -
Uses of Axis in org.pepstock.charba.client.gwt.widgets
Methods in org.pepstock.charba.client.gwt.widgets with parameters of type Axis Modifier and Type Method Description voidAbstractChartWidget. checkAxes(Axis... axes) -
Uses of Axis in org.pepstock.charba.client.impl.callbacks
Methods in org.pepstock.charba.client.impl.callbacks with parameters of type Axis Modifier and Type Method Description StringNoSelectedDatasetTicksCallback. onCallback(Axis axis, double value, int index, List<Double> values) -
Uses of Axis in org.pepstock.charba.client.sankey
Methods in org.pepstock.charba.client.sankey with parameters of type Axis Modifier and Type Method Description booleanSankeyChart. checkAxis(Axis axis)
-