Uses of Interface
org.pepstock.charba.client.defaults.IsDefaultOptions
-
Packages that use IsDefaultOptions 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.defaults Contains all interfaces need to provide defaults values of the chart options.org.pepstock.charba.client.defaults.chart Contains the default values of chart options based on type of chart instance.org.pepstock.charba.client.defaults.globals Contains the default values of chart options for all chart types (CHART.JS options defaults).org.pepstock.charba.client.geo Contains all classes to activate the GEO controllers (AKAchartjs-chart-geo.js
) for CHART.js.org.pepstock.charba.client.impl.charts Contains METER and GAUGE charts implementations (based on controllers), available out-of-the box.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.matrix Contains all classes to activate the Matrix controller (AKAchartjs-chart-matrix.js
) for CHART.js.org.pepstock.charba.client.options Contains all elements to configure charts at global level (know as chart global options).org.pepstock.charba.client.sankey Contains all classes to activate the Sankey controller (AKAchartjs-chart-sankey.js
) for CHART.js.org.pepstock.charba.client.treemap Contains all classes to activate the TreeMap controller (AKAchartjs-chart-treemap.js
) for CHART.js. -
-
Uses of IsDefaultOptions in org.pepstock.charba.client
Classes in org.pepstock.charba.client that implement IsDefaultOptions 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 IsDefaultOptions in org.pepstock.charba.client.data
Methods in org.pepstock.charba.client.data that return IsDefaultOptions Modifier and Type Method Description protected IsDefaultOptions
Dataset. getDefaultValues()
Returns the default options instance.Constructors in org.pepstock.charba.client.data with parameters of type IsDefaultOptions Constructor Description BarDataset(IsDefaultOptions defaultValues)
Creates the data set using a default.BarDataset(IsDefaultOptions defaultValues, boolean hidden)
Creates the data set using a default.BarDataset(Type type, IsDefaultOptions defaultValues, boolean hidden)
Creates the data set using a default and chart type related to the data set.BubbleDataset(IsDefaultOptions defaultValues)
Creates the data set using a default.BubbleDataset(IsDefaultOptions defaultValues, boolean hidden)
Creates the data set using a default.BubbleDataset(Type type, IsDefaultOptions defaultValues, boolean hidden)
Creates the data set using a default and chart type related to the data set.Dataset(Type type, IsDefaultOptions defaultValues, boolean hidden)
Creates the data set using a default and chart type related to the data set, adding patterns and gradients element.DoughnutDataset(IsDefaultOptions defaultValues)
Creates the dataset using a default.DoughnutDataset(IsDefaultOptions defaultValues, boolean hidden)
Creates the dataset using a default.DoughnutDataset(Type type, IsDefaultOptions defaultValues, boolean hidden)
Creates the dataset using a default and chart type related to the dataset.HorizontalBarDataset(IsDefaultOptions defaultValues)
Creates the data set using a default.HorizontalBarDataset(IsDefaultOptions defaultValues, boolean hidden)
Creates the data set using a default.HorizontalBarDataset(Type type, IsDefaultOptions defaultValues, boolean hidden)
Creates the data set using a default and chart type related to the data set.HoverDataset(Type type, IsDefaultOptions defaultValues, boolean hidden)
Creates the data set using a default and chart type related to the data set.HoverFlexDataset(Type type, IsDefaultOptions defaultValues, boolean hidden)
Creates the dataset using a default and chart type related to the dataset.LineDataset(IsDefaultOptions defaultValues)
Creates the dataset using a default.LineDataset(IsDefaultOptions defaultValues, boolean hidden)
Creates the dataset using a default.LineDataset(Type type, IsDefaultOptions defaultValues, boolean hidden)
Creates the dataset using a default and chart type related to the dataset.LiningDataset(Type type, IsDefaultOptions defaultValues, boolean hidden)
Creates the data set using a default and chart type related to the data set.PieDataset(IsDefaultOptions defaultValues)
Creates the dataset using a default.PieDataset(IsDefaultOptions defaultValues, boolean hidden)
Creates the dataset using a default.PieDataset(Type type, IsDefaultOptions defaultValues, boolean hidden)
Creates the dataset using a default and chart type related to the dataset.PolarAreaDataset(IsDefaultOptions defaultValues)
Creates the dataset using a default.PolarAreaDataset(IsDefaultOptions defaultValues, boolean hidden)
Creates the dataset using a default.PolarAreaDataset(Type type, IsDefaultOptions defaultValues, boolean hidden)
Creates the dataset using a default and chart type related to the dataset.RadarDataset(IsDefaultOptions defaultValues)
Creates the dataset using a default.RadarDataset(IsDefaultOptions defaultValues, boolean hidden)
Creates the dataset using a default.RadarDataset(Type type, IsDefaultOptions defaultValues, boolean hidden)
Creates the dataset using a default and chart type related to the dataset.ScatterDataset(IsDefaultOptions defaultValues)
Creates the dataset using a default.ScatterDataset(IsDefaultOptions defaultValues, boolean hidden)
Creates the dataset using a default.ScatterDataset(Type type, IsDefaultOptions defaultValues, boolean hidden)
Creates the dataset using a default and chart type related to the dataset.StackedAreaDataset(IsDefaultOptions defaultValues)
Creates the dataset using a default.StackedAreaDataset(IsDefaultOptions defaultValues, boolean hidden)
Creates the dataset using a default.StackedAreaDataset(Type type, IsDefaultOptions defaultValues, boolean hidden)
Creates the dataset using a default and chart type related to the dataset.StackedBarDataset(IsDefaultOptions defaultValues)
Creates the dataset using a default.StackedBarDataset(IsDefaultOptions defaultValues, boolean hidden)
Creates the dataset using a default.StackedBarDataset(Type type, IsDefaultOptions defaultValues, boolean hidden)
Creates the dataset using a default and chart type related to the dataset.StackedHorizontalBarDataset(IsDefaultOptions defaultValues)
Creates the dataset using a default.StackedHorizontalBarDataset(IsDefaultOptions defaultValues, boolean hidden)
Creates the dataset using a default.StackedHorizontalBarDataset(Type type, IsDefaultOptions defaultValues, boolean hidden)
Creates the dataset using a default and chart type related to the dataset.TimeSeriesBarDataset(IsDefaultOptions defaultValues)
Creates the dataset using a default.TimeSeriesBarDataset(IsDefaultOptions defaultValues, boolean hidden)
Creates the dataset using a default.TimeSeriesBarDataset(Type type, IsDefaultOptions defaultValues, boolean hidden)
Creates the dataset using a default and chart type related to the dataset.TimeSeriesHorizontalBarDataset(IsDefaultOptions defaultValues)
Creates the dataset using a default.TimeSeriesHorizontalBarDataset(IsDefaultOptions defaultValues, boolean hidden)
Creates the dataset using a default.TimeSeriesHorizontalBarDataset(Type type, IsDefaultOptions defaultValues, boolean hidden)
Creates the dataset using a default and chart type related to the dataset.TimeSeriesLineDataset(IsDefaultOptions defaultValues)
Creates the dataset using a default.TimeSeriesLineDataset(IsDefaultOptions defaultValues, boolean hidden)
Creates the dataset using a default.TimeSeriesLineDataset(Type type, IsDefaultOptions defaultValues, boolean hidden)
Creates the dataset using a default and chart type related to the dataset.VerticalLineDataset(IsDefaultOptions defaultValues)
Creates the data set using a default.VerticalLineDataset(IsDefaultOptions defaultValues, boolean hidden)
Creates the data set using a default.VerticalLineDataset(Type type, IsDefaultOptions defaultValues, boolean hidden)
Creates the data set using a default and chart type related to the data set. -
Uses of IsDefaultOptions in org.pepstock.charba.client.defaults
Subinterfaces of IsDefaultOptions in org.pepstock.charba.client.defaults Modifier and Type Interface Description interface
IsDefaultScaledOptions
Interface to define options defaults. -
Uses of IsDefaultOptions in org.pepstock.charba.client.defaults.chart
Classes in org.pepstock.charba.client.defaults.chart that implement IsDefaultOptions Modifier and Type Class Description class
DefaultChartOptions
Defaults for options element, based on chart type.class
DefaultGlobalOptions
Defaults for options element, using the defualt global options.
THIS IS THE ROOT OF ALL ELEMENTS DEFAULTS. -
Uses of IsDefaultOptions in org.pepstock.charba.client.defaults.globals
Classes in org.pepstock.charba.client.defaults.globals that implement IsDefaultOptions Modifier and Type Class Description class
AbstractDefaultOptions
Abstract CHART.JS default values for OPTIONS element with all inner elements.class
DefaultOptions
CHART.JS default values for OPTIONS element.class
DefaultScaledOptions
CHART.JS default values for OPTIONS element for scaled charts.Constructors in org.pepstock.charba.client.defaults.globals with parameters of type IsDefaultOptions Constructor Description AbstractDefaultOptions(IsDefaultOptions options)
Creates the object using the argument options instance as default of chart options. -
Uses of IsDefaultOptions in org.pepstock.charba.client.geo
Constructors in org.pepstock.charba.client.geo with parameters of type IsDefaultOptions Constructor Description BubbleMapDataset(IsDefaultOptions defaultValues)
Creates a data set setting the defaults value.ChoroplethDataset(IsDefaultOptions defaultValues)
Creates a data set setting the defaults value. -
Uses of IsDefaultOptions in org.pepstock.charba.client.impl.charts
Constructors in org.pepstock.charba.client.impl.charts with parameters of type IsDefaultOptions Constructor Description GaugeDataset(double max, IsDefaultOptions defaultValues)
Creates a dataset setting the maximum value of dataset and defaults value.MeterDataset(double max, IsDefaultOptions defaultValues)
Creates a dataset setting the maximum value of dataset and defaults value.MeterDataset(ControllerType type, double max, IsDefaultOptions defaultValues)
Creates a dataset setting the maximum value of dataset and defaults value and the controller type in case of extension -
Uses of IsDefaultOptions in org.pepstock.charba.client.items
Classes in org.pepstock.charba.client.items that implement IsDefaultOptions Modifier and Type Class Description class
OptionsNode
Wrapper of options node of CHART.JS. -
Uses of IsDefaultOptions in org.pepstock.charba.client.matrix
Constructors in org.pepstock.charba.client.matrix with parameters of type IsDefaultOptions Constructor Description MatrixDataset(IsDefaultOptions defaultValues)
Creates a data set setting the defaults value. -
Uses of IsDefaultOptions in org.pepstock.charba.client.options
Classes in org.pepstock.charba.client.options that implement IsDefaultOptions 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.Constructors in org.pepstock.charba.client.options with parameters of type IsDefaultOptions Constructor Description Options(String scope, IsDefaultOptions defaultValues)
Creates the object only with default provider.Options(String scope, IsDefaultOptions defaultValues, NativeObject nativeObject)
Creates the object only with default provider and native object.SpanGapHandler(AbstractNode parent, IsDefaultOptions defaultValues, DataEnvelop<NativeObject> envelop)
Creates a span gap handler with the envelop of the native object where SPANGAPS property must be managed and the default value to use when the property does not exist. -
Uses of IsDefaultOptions in org.pepstock.charba.client.sankey
Constructors in org.pepstock.charba.client.sankey with parameters of type IsDefaultOptions Constructor Description SankeyDataset(IsDefaultOptions defaultValues)
Creates a data set setting the defaults value. -
Uses of IsDefaultOptions in org.pepstock.charba.client.treemap
Constructors in org.pepstock.charba.client.treemap with parameters of type IsDefaultOptions Constructor Description TreeMapDataset(IsDefaultOptions defaultValues)
Creates a data set setting the defaults value.
-