Uses of Interface
org.pepstock.charba.client.options.HasSpanGaps
-
Packages that use HasSpanGaps Package Description org.pepstock.charba.client Main package with all charts implementation, global classes and common interfaces.org.pepstock.charba.client.data Contains all elements to configure the datasets of a chart instance (know as chart data at instance level).org.pepstock.charba.client.items Contains all elements generated by CHART.JS, which are mapping java script objects, to use at runtime in plugins, events or controllers.org.pepstock.charba.client.ml Contains all classes to activate the ML library to use the regression capabilities.org.pepstock.charba.client.options Contains all elements to configure charts at global level (know as chart global options). -
-
Uses of HasSpanGaps in org.pepstock.charba.client
Classes in org.pepstock.charba.client that implement HasSpanGaps Modifier and Type Class Description class
ChartOptions
This object is mapping the default options related to the chart type.class
GlobalOptions
Default global options (maps the java script object chart.defaults.global). -
Uses of HasSpanGaps in org.pepstock.charba.client.data
Classes in org.pepstock.charba.client.data that implement HasSpanGaps Modifier and Type Class Description class
AreaDataset
The area chart allows a number of properties to be specified for each dataset.class
LineDataset
The line chart allows a number of properties to be specified for each data set.
These are used to set display properties for a specific data set.
All point* properties can be specified as an array.
If these are set to an array value, the first value applies to the first point, the second value to the second point, and so on.class
LiningDataset
The chart allows a number of properties to be specified for each data set.
These are used to set display properties for a specific data set.
This class collects a set of common field for Line and Radar charts.class
RadarDataset
The radar chart allows a number of properties to be specified for each dataset.class
ScatterDataset
The scatter chart allows a number of properties to be specified for each dataset.class
StackedAreaDataset
The stacked area chart allows a number of properties to be specified for each dataset.class
StackedLineDataset
The stacked line chart allows a number of properties to be specified for each dataset.
These are used to set display properties for a specific dataset.
Extends the line dataset.class
TimeSeriesLineDataset
The time series line chart allows a number of properties to be specified for each dataset.class
VerticalLineDataset
The vertical line chart allows a number of properties to be specified for each data set.
These are used to set display properties for a specific data set.
All point* properties can be specified as an array.
If these are set to an array value, the first value applies to the first point, the second value to the second point, and so on. -
Uses of HasSpanGaps in org.pepstock.charba.client.items
Classes in org.pepstock.charba.client.items that implement HasSpanGaps Modifier and Type Class Description class
OptionsNode
Wrapper of options node of CHART.JS. -
Uses of HasSpanGaps in org.pepstock.charba.client.ml
Classes in org.pepstock.charba.client.ml that implement HasSpanGaps Modifier and Type Class Description class
RegressionDataset
This is aLineDataset
which is created to add the regression line, calculate by a regression, to a chart. -
Uses of HasSpanGaps in org.pepstock.charba.client.options
Classes in org.pepstock.charba.client.options that implement HasSpanGaps Modifier and Type Class Description class
ExtendedOptions
Options used internally inside the chart configuration.
This is the root element of configuration.
Extends the normal options (with scales) with all methods to add callbacks and events.
It provides also the method to set the CHARBA id when new chart is created.class
Options
Base object which maps chart options.class
ScaledOptions
Base object which maps chart options, with scales elements to set axes configurations.
-