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 IndexAxisBarOptions. getIndexAxis()Returns the base axis for the dataset.IndexAxisLineOptions. 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 voidBarOptions. setIndexAxis(IndexAxis indexAxis)Sets the base axis for the dataset.
UseYfor horizontal bar.voidHorizontalBarOptions. setIndexAxis(IndexAxis indexAxis)voidLineOptions. setIndexAxis(IndexAxis indexAxis)Sets the base axis for the dataset.
UseYfor vertical line.voidStackedBarOptions. setIndexAxis(IndexAxis indexAxis)If invoked, this is ignored because theIndexAxisis already set, based on the chart class.voidStackedLineOptions. setIndexAxis(IndexAxis indexAxis)If invoked, this is ignored because theIndexAxisis already set, based on the chart class.voidVerticalLineOptions. 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 IndexAxisBarDataset. getIndexAxis()Returns the base axis for the data set.IndexAxisLineDataset. 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 voidBarDataset. setIndexAxis(IndexAxis indexAxis)Sets the base axis for the data set.
UseYfor horizontal bar.voidHorizontalBarDataset. setIndexAxis(IndexAxis indexAxis)voidLineDataset. setIndexAxis(IndexAxis indexAxis)Sets the base axis for the data set.voidVerticalLineDataset. 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 IndexAxisIsDefaultOptions. 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 IndexAxisDefaultOptions. 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 IndexAxisIndexAxis. 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 IndexAxisDatasetItem. 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 IndexAxisOptions. 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 voidOptions. setIndexAxis(IndexAxis indexAxis)Sets the base axis for the dataset.
-