Class ChartType

java.lang.Object
com.vaadin.flow.component.charts.model.ChartType
All Implemented Interfaces:
ChartEnum, Serializable

public class ChartType extends Object implements ChartEnum
The default series type for the chart. Can be one of LINE, SPLINE, AREA, AREASPLINE, COLUMN, BAR, PIE, SCATTER, AREARANGE, AREASPLINERANGE, and COLUMNRANGE. Defaults to LINE.

Own custom extensions can be made by extending this class.

Configuration specific to each ChartType can be set using Configuration.setPlotOptions(AbstractPlotOptions...) or for a single series using AbstractSeries.setPlotOptions(AbstractPlotOptions)

See Also: