Uses of Interface
com.vaadin.flow.component.charts.model.Series
-
Packages that use Series Package Description com.vaadin.flow.component.charts.events com.vaadin.flow.component.charts.events.internal com.vaadin.flow.component.charts.model -
-
Uses of Series in com.vaadin.flow.component.charts.events
Methods in com.vaadin.flow.component.charts.events that return Series Modifier and Type Method Description default Series
HasSeries. getSeries()
Returns the series -
Uses of Series in com.vaadin.flow.component.charts.events.internal
Methods in com.vaadin.flow.component.charts.events.internal that return Series Modifier and Type Method Description Series
AbstractSeriesEvent. getSeries()
Returns the affected seriesConstructors in com.vaadin.flow.component.charts.events.internal with parameters of type Series Constructor Description AbstractSeriesEvent(Series series)
Constructs the event, storing the information about the series.AbstractSeriesItemEvent(Series series, DataSeriesItem item)
Constructs the event with a series item (without the value).AbstractSeriesItemEvent(Series series, Number value)
Constructs the event with a value (without the series item).DataAddedEvent(Series series, DataSeriesItem item, boolean shift)
Constructs the event with given series, item and a shift information.DataAddedEvent(Series series, Number value)
Constructs the event with given series and number.DataRemovedEvent(Series series, int index)
Constructs the event with given series and index of the removed data.DataUpdatedEvent(Series series, DataSeriesItem item, int pointIndex)
Constructs the event with given series, item and point index.DataUpdatedEvent(Series series, Number value, int pointIndex)
Constructs the event with given series, number and point index.ItemSlicedEvent(Series series, int index, boolean sliced)
Constructs the event with animated transition, redraws the chartItemSlicedEvent(Series series, int index, boolean sliced, boolean redraw)
Constructs the event with animated transitionItemSlicedEvent(Series series, int index, boolean sliced, boolean redraw, boolean animation)
Constructs the event.SeriesAddedEvent(Series series)
Constructs the event.SeriesChangedEvent(Series series)
Constructs the event.SeriesStateEvent(Series series, boolean enabled)
Constructs the event with given series and its state information. -
Uses of Series in com.vaadin.flow.component.charts.model
Classes in com.vaadin.flow.component.charts.model that implement Series Modifier and Type Class Description class
AbstractSeries
Abstract base class for seriesclass
DataProviderSeries<T>
A series which is based on data from a DataProvider.class
DataSeries
An array of data points to be displayed in a chart.class
HeatSeries
A specialized series for use with HeatMapsclass
ListSeries
A series consisting of a list of numerical values.class
NodeSeries
A series containing nodes and links to nodes.class
RangeSeries
Series for range type dataclass
TreeSeries
A collection ofTreeSeriesItems
that compose a multi-root tree.Methods in com.vaadin.flow.component.charts.model that return Series Modifier and Type Method Description Series
DrilldownCallback.DrilldownDetails. getSeries()
Returns theDrilldownCallback.DrilldownDetails.getItem()
series.Series
DrilldownCallback. handleDrilldown(DrilldownCallback.DrilldownDetails event)
Method called when a point with drilldown enabled is clicked and should return the Series to be used as drilldown for the point.Methods in com.vaadin.flow.component.charts.model that return types with arguments of type Series Modifier and Type Method Description List<Series>
Configuration. getSeries()
Methods in com.vaadin.flow.component.charts.model with parameters of type Series Modifier and Type Method Description void
DataSeries. addItemWithDrilldown(DataSeriesItem item, Series series)
Adds a new item to the series data.void
Configuration. addSeries(Series series)
Adds a single series to the list of series in this configuration.void
Configuration. setSeries(Series... series)
Method parameters in com.vaadin.flow.component.charts.model with type arguments of type Series Modifier and Type Method Description void
Configuration. setSeries(List<Series> series)
Sets the actual series to append to the chart.Constructors in com.vaadin.flow.component.charts.model with parameters of type Series Constructor Description DrilldownDetails(Series series, DataSeriesItem item, int itemIndex)
Construct a DrilldownDetails
-