Package | Description |
---|---|
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).
|
Modifier and Type | Interface and Description |
---|---|
interface |
IsDefaultBaseTick
Interface to define base tick object defaults.
|
interface |
IsDefaultLegendLabels
Interface to define legend labels object defaults.
|
interface |
IsDefaultMajorTick
Interface to define MAJOR tick object defaults.
|
interface |
IsDefaultMinorTick
Interface to define MINOR tick object defaults.
|
interface |
IsDefaultPointLabels
Interface to define point labels object defaults.
|
interface |
IsDefaultScaleLabel
Interface to define scale label object defaults.
|
interface |
IsDefaultTicks
Interface to define ticks object defaults.
|
interface |
IsDefaultTitle
Interface to define title object defaults.
|
Modifier and Type | Class and Description |
---|---|
class |
DefaultChartLegendLabels
Defaults for legend labels option element, based on chart type.
|
class |
DefaultChartPointLabels
Defaults for point labels option element, based on chart type.
|
class |
DefaultChartScaleLabel
Defaults for scale label option element, based on chart type.
|
class |
DefaultChartTicks
Defaults for ticks option element, based on chart type.
|
class |
DefaultChartTitle
Defaults for title option element, based on chart type.
|
Modifier and Type | Class and Description |
---|---|
class |
DefaultLegendLabels
CHART.JS default values for LEGENDLABELS element.
|
class |
DefaultMajorTickItem
CHART.JS default values for MAJOR tick element.
|
class |
DefaultMinorTickItem
CHART.JS default values for MINOR tick element.
|
class |
DefaultPointLabels
CHART.JS default values for POINTLABELS element.
|
class |
DefaultScaleLabel
CHART.JS default values for SCALELABEL element.
|
class |
DefaultTickItem
CHART.JS default values for base tick element.
|
class |
DefaultTicks
CHART.JS default values for TICKS element.
|
class |
DefaultTitle
CHART.JS default values for TITLE element.
|
Modifier and Type | Interface and Description |
---|---|
interface |
HasFont
Interface to map font options.
|
Modifier and Type | Class and Description |
---|---|
class |
AbstractTick<P extends org.pepstock.charba.client.options.AbstractModel<?,?>,D extends IsDefaultBaseTick>
Configures the ticks of an axis.
Common base class for ticks. |
class |
LegendLabels
This is the labels configuration of the legend.
|
class |
PointLabels
It is used to configure the point labels that are shown on the perimeter of the scale.
Note that these options only apply if display is true . |
class |
ScaleLabel
When creating a chart, you want to tell the viewer what data they are viewing.
|
class |
TickMajor
It defines options for the major tick marks that are generated by the axis.
|
class |
TickMinor
It defines options for the minor tick marks that are generated by the axis.
|
class |
Ticks
All configuration for ticks of a chart.
It defines options for the tick marks that are generated by the axis. |
class |
Title
Configures the default chart title which defines text to draw at the top of the chart.
|
Constructor and Description |
---|
Fonter(NativeObject nativeObject,
org.pepstock.charba.client.options.AbstractModel<?,?> model,
IsDefaultFontItem defaultValues)
Creates a fonter with the native object where FONTs properties must be managed and the default value to use when the property does not exist.
|