Package nl.crashdata.chartjs.data
Interface ChartJsOptions
-
- All Superinterfaces:
Serializable
- All Known Implementing Classes:
SimpleChartJsOptions
public interface ChartJsOptions extends Serializable
Represents the 'options'-configuration for a chart, ie. options that don't correspond directly to a dataset. Corresponds to theconfig.optionsproperty.- Author:
- haster
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IntegergetCircumference()IntegergetCutoutPercentage()ChartJsHoverConfiggetHoverConfig()ChartJsLegendConfiggetLegendConfig()BooleangetMaintainAspectRatio()Map<String,Serializable>getPlugins()BooleangetResponsive()IntegergetRotation()ChartJsScalesConfiggetScalesConfig()ChartJsTitleConfiggetTitleConfig()ChartJsTooltipConfiggetTooltipConfig()
-
-
-
Method Detail
-
getResponsive
Boolean getResponsive()
-
getMaintainAspectRatio
Boolean getMaintainAspectRatio()
-
getCutoutPercentage
Integer getCutoutPercentage()
-
getRotation
Integer getRotation()
-
getCircumference
Integer getCircumference()
-
getTooltipConfig
ChartJsTooltipConfig getTooltipConfig()
-
getHoverConfig
ChartJsHoverConfig getHoverConfig()
-
getScalesConfig
ChartJsScalesConfig getScalesConfig()
-
getTitleConfig
ChartJsTitleConfig getTitleConfig()
-
getLegendConfig
ChartJsLegendConfig getLegendConfig()
-
getPlugins
Map<String,Serializable> getPlugins()
-
-