We use cookies to serve our customers and website visitors in the best possible way. Cookies are used for the proper functioning of the website and for improving the user experience, monitoring visitor traffic and marketing purposes. By continuing to browse the site, you agree to our use of cookies. You can read more about cookies here.
com.vaadin.flow.component.charts.model.
Class RangeSeries
- java.lang.Object
-
- com.vaadin.flow.component.charts.model.AbstractConfigurationObject
-
- com.vaadin.flow.component.charts.model.AbstractSeries
-
- com.vaadin.flow.component.charts.model.DataSeries
-
- com.vaadin.flow.component.charts.model.RangeSeries
-
All Implemented Interfaces:
public class RangeSeries extends DataSeries
Series for range type data
See Also:
-
-
Constructor Summary
Constructors Constructor Description RangeSeries()
RangeSeries(Number[]... values)
Constructs a RangeSeries with the given values
RangeSeries(String name)
Constructs a RangeSeries with the given name
RangeSeries(String name, Number[]... values)
Constructs a RangeSeries with the given name and values
-
Method Summary
All Methods Modifier and Type Method Description void
setRangeData(Number[]... data)
Sets the numeric data for this series.
-
Methods inherited from class com.vaadin.flow.component.charts.model.DataSeries
add, add, addData, addItemWithDrilldown, addItemWithDrilldown, clear, get, get, getData, remove, setData, setData, setData, setData, setItemSliced, setItemSliced, setItemSliced, size, update
-
Methods inherited from class com.vaadin.flow.component.charts.model.AbstractSeries
getColorAxis, getConfiguration, getId, getName, getPlotOptions, getStack, getxAxis, getyAxis, isVisible, setColorAxis, setConfiguration, setId, setName, setPlotOptions, setStack, setVisible, setVisible, setxAxis, setyAxis, setyAxis, updateSeries
-
-
-
-
Constructor Detail
-
RangeSeries
public RangeSeries()
-
RangeSeries
public RangeSeries(String name)
Constructs a RangeSeries with the given name
Parameters:
name
-
-
RangeSeries
public RangeSeries(Number[]... values)
Constructs a RangeSeries with the given values
Parameters:
values
- low-high pairs, or x-low-high triplets
-
-
Method Detail
-
setRangeData
public void setRangeData(Number[]... data)
Sets the numeric data for this series.
Parameters:
values
- low-high pairs, or x-low-high triplets
-
-