Uses of Interface
org.pepstock.charba.client.defaults.IsDefaultScaledOptions
-
Packages that use IsDefaultScaledOptions Package Description org.pepstock.charba.client Main package with all charts implementation, global classes and common interfaces.org.pepstock.charba.client.configuration Contains all elements to configure a chart instance (know as chart options at instance level).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.gwt.widgets Contains all charts classes wrapped as GWT widget in order to enable to use inside to GWT UIBinder.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.options Contains all elements to configure charts at global level (know as chart global options). -
-
Uses of IsDefaultScaledOptions in org.pepstock.charba.client
Classes in org.pepstock.charba.client that implement IsDefaultScaledOptions Modifier and Type Class Description class
ChartOptions
This object is mapping the default options related to the chart type.Methods in org.pepstock.charba.client that return IsDefaultScaledOptions Modifier and Type Method Description IsDefaultScaledOptions
GlobalOptions. asDefault()
Returns the global options as default scaled options.IsDefaultScaledOptions
AbstractChart. getDefaultChartOptions()
Returns the default options created based on chart type.IsDefaultScaledOptions
IsChart. getDefaultChartOptions()
Returns the default options created based on chart type.IsDefaultScaledOptions
AbstractChart. getWholeOptions()
Returns the default options by a chart instance, merging global, chart type global and chart options.
If the options is not consistent, it will returns theAbstractChart.getDefaultChartOptions()
.IsDefaultScaledOptions
IsChart. getWholeOptions()
Returns the default options by a chart instance, merging global, chart type global and chart options. -
Uses of IsDefaultScaledOptions in org.pepstock.charba.client.configuration
Constructors in org.pepstock.charba.client.configuration with parameters of type IsDefaultScaledOptions Constructor Description AbstractPieOptions(IsChart chart, IsDefaultScaledOptions defaultvalues)
Builds the object storing the chart instance and defaults.BarOptions(IsChart chart, IsDefaultScaledOptions defaultValues)
Builds the object storing the chart instance and default values.BubbleOptions(IsChart chart, IsDefaultScaledOptions defaultValues)
Builds the object storing the chart instance.ConfigurationOptions(IsChart chart, IsDefaultScaledOptions defaultValues)
Builds the object storing the chart instance and defaults options.DoughnutOptions(IsChart chart, IsDefaultScaledOptions defaultValues)
Builds the object storing the chart instance and default options.HorizontalBarOptions(IsChart chart, IsDefaultScaledOptions defaultValues)
Builds the object storing the chart instance and default values.LineOptions(IsChart chart, IsDefaultScaledOptions defaultValues)
Builds the object storing the chart instance and default values.PieOptions(IsChart chart, IsDefaultScaledOptions defaultValues)
Builds the object storing the chart instance and default values.PolarAreaOptions(IsChart chart, IsDefaultScaledOptions defaultValues)
Builds the object storing the chart instance and default values.RadarOptions(IsChart chart, IsDefaultScaledOptions defaultValues)
Builds the object storing the chart instance and default values.ScalesOptions(IsChart chart, IsDefaultScaledOptions defaultValues)
Builds the object storing the chart instance and default values.ScalesOptions(IsChart chart, IsDefaultScaledOptions defaultValues, boolean createScale)
Builds the object storing the chart instance and default values and creating a scale options if requested.ScatterOptions(IsChart chart, IsDefaultScaledOptions defaultValues)
Builds the object storing the chart instance and default values.StackedOptions(IsChart chart, IsDefaultScaledOptions defaultValues)
Builds the object storing the chart instance and default values.StackedOptions(IsChart chart, IsDefaultScaledOptions defaultValues, boolean onlyYScaled)
Builds the object storing the chart instance, default values and if only Y axis is scaled.TimeSeriesBarOptions(IsChart chart, IsDefaultScaledOptions defaultValues)
Builds the object storing the chart instance and default values.TimeSeriesLineOptions(IsChart chart, IsDefaultScaledOptions defaultValues)
Builds the object storing the chart instance and default values.VerticalLineOptions(IsChart chart, IsDefaultScaledOptions defaultValues)
Builds the object storing the chart instance and default values. -
Uses of IsDefaultScaledOptions in org.pepstock.charba.client.defaults.chart
Classes in org.pepstock.charba.client.defaults.chart that implement IsDefaultScaledOptions 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 IsDefaultScaledOptions in org.pepstock.charba.client.defaults.globals
Classes in org.pepstock.charba.client.defaults.globals that implement IsDefaultScaledOptions Modifier and Type Class Description class
DefaultScaledOptions
CHART.JS default values for OPTIONS element for scaled charts. -
Uses of IsDefaultScaledOptions in org.pepstock.charba.client.gwt.widgets
Methods in org.pepstock.charba.client.gwt.widgets that return IsDefaultScaledOptions Modifier and Type Method Description IsDefaultScaledOptions
AbstractChartWidget. getDefaultChartOptions()
IsDefaultScaledOptions
AbstractChartWidget. getWholeOptions()
-
Uses of IsDefaultScaledOptions in org.pepstock.charba.client.items
Classes in org.pepstock.charba.client.items that implement IsDefaultScaledOptions Modifier and Type Class Description class
OptionsNode
Wrapper of options node of CHART.JS.Constructors in org.pepstock.charba.client.items with parameters of type IsDefaultScaledOptions Constructor Description OptionsNode(String chartId, IsDefaultScaledOptions defaultValues, ChartEnvelop<NativeObject> envelop)
Creates the item using an envelop with the native java script object which contains all properties. -
Uses of IsDefaultScaledOptions in org.pepstock.charba.client.options
Classes in org.pepstock.charba.client.options that implement IsDefaultScaledOptions 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
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 IsDefaultScaledOptions Constructor Description ExtendedOptions(IsChart chart, IsDefaultScaledOptions defaultValues, ChartEnvelop<NativeObject> envelop)
Creates an options with default provider.ExtendedOptions(IsChart chart, IsDefaultScaledOptions defaultValues, ConfigurationEnvelop<NativeObject> envelop)
Creates an options with default provider.ScaledOptions(String scope, IsDefaultScaledOptions defaultValues)
Creates the object only with default provider.ScaledOptions(String scope, IsDefaultScaledOptions defaultValues, NativeObject nativeObject, boolean createScales)
Creates the object only with default provider and native object.
-