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 SeriesHasSeries. 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 SeriesAbstractSeriesEvent. 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 classAbstractSeriesAbstract base class for seriesclassDataProviderSeries<T>A series which is based on data from a DataProvider.classDataSeriesAn array of data points to be displayed in a chart.classHeatSeriesA specialized series for use with HeatMapsclassListSeriesA series consisting of a list of numerical values.classNodeSeriesA series containing nodes and links to nodes.classRangeSeriesSeries for range type dataclassTreeSeriesA collection ofTreeSeriesItemsthat compose a multi-root tree.Methods in com.vaadin.flow.component.charts.model that return Series Modifier and Type Method Description SeriesDrilldownCallback.DrilldownDetails. getSeries()Returns theDrilldownCallback.DrilldownDetails.getItem()series.SeriesDrilldownCallback. 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 voidDataSeries. addItemWithDrilldown(DataSeriesItem item, Series series)Adds a new item to the series data.voidConfiguration. addSeries(Series series)Adds a single series to the list of series in this configuration.voidConfiguration. setSeries(Series... series)Method parameters in com.vaadin.flow.component.charts.model with type arguments of type Series Modifier and Type Method Description voidConfiguration. 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
-