use of com.vaadin.addon.charts.model.RangeSeries in project charts by vaadin.
the class ChartData method rangeSeriesSnippet1.
public void rangeSeriesSnippet1(Configuration conf) {
RangeSeries series = new RangeSeries("Temperature Ranges", new Double[] { -51.5, 10.9 }, new Double[] { -49.0, 11.8 }, // ...
new Double[] { -47.0, 10.8 });
conf.addSeries(series);
}
Aggregations