HighChartsDataPoint constructor

HighChartsDataPoint({
  1. required double x,
  2. required double y,
  3. String? name,
  4. String? color,
  5. Map<String, dynamic>? custom,
})

Implementation

HighChartsDataPoint({
  required this.x,
  required this.y,
  this.name, // Optional
  this.color, // Optional
  this.custom, // Optional
});