SimpleFrequencyPolygonSeries constructor

const SimpleFrequencyPolygonSeries({
  1. required String name,
  2. List<double> values = const [],
  3. List<SimpleFrequencyPolygonBin> bins = const [],
  4. Color? color,
  5. SimpleTrendLineStyle lineStyle = SimpleTrendLineStyle.solid,
})

Implementation

const SimpleFrequencyPolygonSeries({
  required this.name,
  this.values = const [],
  this.bins = const [],
  this.color,
  this.lineStyle = SimpleTrendLineStyle.solid,
});