Uses of Interface
org.pepstock.charba.client.defaults.IsDefaultScale
-
Packages that use IsDefaultScale Package Description org.pepstock.charba.client Main package with all charts implementation, global classes and common interfaces.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.options Contains all elements to configure charts at global level (know as chart global options). -
-
Uses of IsDefaultScale in org.pepstock.charba.client
Classes in org.pepstock.charba.client that implement IsDefaultScale Modifier and Type Class Description class
GlobalScale
Default global scale (maps the java script objectChart.defaults.scale
and the result ofChart.scaleService
). -
Uses of IsDefaultScale in org.pepstock.charba.client.defaults
Methods in org.pepstock.charba.client.defaults that return IsDefaultScale Modifier and Type Method Description IsDefaultScale
IsDefaultScales. getAxis(ScaleId scaleId, AxisKind kind)
Returns the default configuration for x axis. -
Uses of IsDefaultScale in org.pepstock.charba.client.defaults.chart
Classes in org.pepstock.charba.client.defaults.chart that implement IsDefaultScale Modifier and Type Class Description class
DefaultChartScale
Defaults for scale/axis option element, based on chart type.Methods in org.pepstock.charba.client.defaults.chart that return IsDefaultScale Modifier and Type Method Description IsDefaultScale
DefaultChartScales. getAxis(ScaleId scaleId, AxisKind kind)
-
Uses of IsDefaultScale in org.pepstock.charba.client.defaults.globals
Classes in org.pepstock.charba.client.defaults.globals that implement IsDefaultScale Modifier and Type Class Description class
DefaultScale
CHART.JS default values for scale/axis element.Methods in org.pepstock.charba.client.defaults.globals that return IsDefaultScale Modifier and Type Method Description IsDefaultScale
DefaultScales. getAxis(ScaleId scaleId, AxisKind kind)
-
Uses of IsDefaultScale in org.pepstock.charba.client.options
Classes in org.pepstock.charba.client.options that implement IsDefaultScale Modifier and Type Class Description class
AbstractScale
Scales are an integral part of a chart.
They are used to determine how data maps to a pixel value on the chart.
linear logarithmic category time time series radial linearclass
ExtendedScale
Scale options used internally inside the chart configuration.
Extends the normal scale options with all methods to add callbacks and events.class
Scale
Scales are an integral part of a chart.
They are used to determine how data maps to a pixel value on the chart.
linear logarithmic category time time series radial linearMethods in org.pepstock.charba.client.options that return IsDefaultScale Modifier and Type Method Description IsDefaultScale
Scales. getAxis(ScaleId scaleId, AxisKind kind)
Constructors in org.pepstock.charba.client.options with parameters of type IsDefaultScale Constructor Description AbstractScale(IsDefaultScale defaultValues, NativeObject nativeObject)
Creates the object only with default provider and native object.ExtendedScale(ConfigurationEnvelop<Scale> envelop, IsDefaultScale defaultValues)
Creates a scale with the chart options scale as inner object.ExtendedScale(ConfigurationEnvelop<ScaleId> envelop, AxisType type, AxisKind kind, IsDefaultScale defaultValues)
Creates a scale with default provider.
The native object is created empty.Scale(AxisType type, IsDefaultScale defaultValues, NativeObject nativeObject)
Creates the object only with aixs type, default provider and native object.
This is used when the default scale is read byDefaults.getScale(AxisType)
.Scale(IsDefaultScale defaultValues, NativeObject nativeObject)
Creates the object only with default provider and native object.
This is used when the scale is read byScales
.
-