Uses of Class
org.pepstock.charba.client.enums.IndexAxis
-
Packages that use IndexAxis Package Description org.pepstock.charba.client.configuration Contains all elements to configure a chart instance (know as chart options at instance level).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.globals Contains the default values of chart options for all chart types (CHART.JS options defaults).org.pepstock.charba.client.enums Contains all enumerations of some chart options where only a specific set of values can be set.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 IndexAxis in org.pepstock.charba.client.configuration
Methods in org.pepstock.charba.client.configuration that return IndexAxis Modifier and Type Method Description IndexAxis
BarOptions. getIndexAxis()
Returns the base axis for the dataset.IndexAxis
LineOptions. getIndexAxis()
Returns the base axis for the dataset.Methods in org.pepstock.charba.client.configuration with parameters of type IndexAxis Modifier and Type Method Description void
BarOptions. setIndexAxis(IndexAxis indexAxis)
Sets the base axis for the dataset.
UseY
for horizontal bar.void
HorizontalBarOptions. setIndexAxis(IndexAxis indexAxis)
void
LineOptions. setIndexAxis(IndexAxis indexAxis)
Sets the base axis for the dataset.
UseY
for vertical line.void
StackedBarOptions. setIndexAxis(IndexAxis indexAxis)
If invoked, this is ignored because theIndexAxis
is already set, based on the chart class.void
StackedLineOptions. setIndexAxis(IndexAxis indexAxis)
If invoked, this is ignored because theIndexAxis
is already set, based on the chart class.void
VerticalLineOptions. setIndexAxis(IndexAxis indexAxis)
Constructors in org.pepstock.charba.client.configuration with parameters of type IndexAxis Constructor Description StackedBarOptions(IsChart chart, IsDefaultScaledOptions defaultValues, IndexAxis indexAxis)
Builds the object storing the chart instance and default values.StackedLineOptions(IsChart chart, IsDefaultScaledOptions defaultValues, IndexAxis indexAxis)
Builds the object storing the chart instance and default values. -
Uses of IndexAxis in org.pepstock.charba.client.data
Methods in org.pepstock.charba.client.data that return IndexAxis Modifier and Type Method Description IndexAxis
BarDataset. getIndexAxis()
Returns the base axis for the data set.IndexAxis
LineDataset. getIndexAxis()
Returns the base axis for the data set.Methods in org.pepstock.charba.client.data with parameters of type IndexAxis Modifier and Type Method Description void
BarDataset. setIndexAxis(IndexAxis indexAxis)
Sets the base axis for the data set.
UseY
for horizontal bar.void
HorizontalBarDataset. setIndexAxis(IndexAxis indexAxis)
void
LineDataset. setIndexAxis(IndexAxis indexAxis)
Sets the base axis for the data set.void
VerticalLineDataset. setIndexAxis(IndexAxis indexAxis)
-
Uses of IndexAxis in org.pepstock.charba.client.defaults
Methods in org.pepstock.charba.client.defaults that return IndexAxis Modifier and Type Method Description IndexAxis
IsDefaultOptions. getIndexAxis()
Returns the base axis for the dataset, only for bar options. -
Uses of IndexAxis in org.pepstock.charba.client.defaults.globals
Methods in org.pepstock.charba.client.defaults.globals that return IndexAxis Modifier and Type Method Description IndexAxis
DefaultOptions. getIndexAxis()
-
Uses of IndexAxis in org.pepstock.charba.client.enums
Methods in org.pepstock.charba.client.enums that return IndexAxis Modifier and Type Method Description static IndexAxis
IndexAxis. valueOf(String name)
Returns the enum constant of this type with the specified name.static IndexAxis[]
IndexAxis. values()
Returns an array containing the constants of this enum type, in the order they are declared. -
Uses of IndexAxis in org.pepstock.charba.client.items
Methods in org.pepstock.charba.client.items that return IndexAxis Modifier and Type Method Description IndexAxis
DatasetItem. getIndexAxis()
Returns the dataset index axis. -
Uses of IndexAxis in org.pepstock.charba.client.options
Methods in org.pepstock.charba.client.options that return IndexAxis Modifier and Type Method Description IndexAxis
Options. getIndexAxis()
Returns the base axis for the dataset, only for bar options.Methods in org.pepstock.charba.client.options with parameters of type IndexAxis Modifier and Type Method Description void
Options. setIndexAxis(IndexAxis indexAxis)
Sets the base axis for the dataset.
-