Package | Description |
---|---|
com.vaadin.flow.component.charts.events | |
com.vaadin.flow.component.charts.events.internal | |
com.vaadin.flow.component.charts.model |
Modifier and Type | Method and Description |
---|---|
default Series |
HasSeries.getSeries()
Returns the series
|
Modifier and Type | Method and Description |
---|---|
Series |
AbstractSeriesEvent.getSeries()
Returns the affected series
|
Constructor and 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 chart
|
ItemSlicedEvent(Series series,
int index,
boolean sliced,
boolean redraw)
Constructs the event with animated transition
|
ItemSlicedEvent(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.
|
Modifier and Type | Class and Description |
---|---|
class |
AbstractSeries
Abstract base class for series
|
class |
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 HeatMaps
|
class |
ListSeries
A series consisting of a list of numerical values.
|
class |
RangeSeries
Series for range type data
|
class |
TreeSeries
A collection of
TreeSeriesItems that compose a
multi-root tree. |
Modifier and Type | Method and Description |
---|---|
List<Series> |
Configuration.getSeries() |
Modifier and Type | Method and 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) |
Modifier and Type | Method and Description |
---|---|
void |
Configuration.setSeries(List<Series> series)
Sets the actual series to append to the chart.
|
Copyright © 2025. All rights reserved.