ChartPoint<D> constructor

ChartPoint<D>({
  1. required Color? color,
  2. required D domain,
  3. required D? domainLowerBound,
  4. required D? domainUpperBound,
  5. required Color? fillColor,
  6. required String? label,
  7. required num? measure,
  8. required num? measureLowerBound,
  9. required num? measureUpperBound,
  10. required double? radius,
  11. required String? shape,
  12. required double? strokeWidth,
})

Implementation

ChartPoint({
  required this.color,
  required this.domain,
  required this.domainLowerBound,
  required this.domainUpperBound,
  required this.fillColor,
  required this.label,
  required this.measure,
  required this.measureLowerBound,
  required this.measureUpperBound,
  required this.radius,
  required this.shape,
  required this.strokeWidth,
});