PointDataSet<T extends PointChartValue> constructor

PointDataSet<T extends PointChartValue>({
  1. required List<T> data,
  2. String? legend,
  3. double pointSize = 3,
  4. PdfColor color = PdfColors.blue,
  5. bool drawPoints = true,
  6. BuildCallback? shape,
  7. Widget buildValue(
    1. Context context,
    2. T value
    )?,
  8. ValuePosition valuePosition = ValuePosition.auto,
})

Implementation

PointDataSet({
  required this.data,
  String? legend,
  this.pointSize = 3,
  PdfColor color = PdfColors.blue,
  this.drawPoints = true,
  this.shape,
  this.buildValue,
  this.valuePosition = ValuePosition.auto,
}) : super(
        legend: legend,
        color: color,
      );