HighchartsBarSeries constructor

HighchartsBarSeries({
  1. List<List>? data,
  2. String? name,
  3. HighchartsBarSeriesOptions? options,
  4. List<HighchartsBarSeriesDataOptions>? dataPoints,
})

A bar series. If the type option is not specified, it is inherited from chart.type.

API Docs: https://api.highcharts.com/highcharts/series.bar

Implementation

HighchartsBarSeries({
  this.data,
  this.name,
  this.options,
  this.dataPoints,
});