Package nl.crashdata.chartjs.data
Interface ChartJsConfig<E extends Serializable>
-
- Type Parameters:
E- The type of the elements of the data.
- All Superinterfaces:
Serializable
- All Known Implementing Classes:
SimpleChartJsConfig
public interface ChartJsConfig<E extends Serializable> extends Serializable
Represents the main config for a chart. Corresponds to the config object that gets added as a parameter in the constructor of the javascript Chart object:var chart = new Chart(ctx, config).- Author:
- haster
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ChartJsChartTypegetChartType()ChartJsData<E>getData()ChartJsOptionsgetOptions()
-
-
-
Method Detail
-
getChartType
ChartJsChartType getChartType()
-
getData
ChartJsData<E> getData()
-
getOptions
ChartJsOptions getOptions()
-
-