PointDataSet<T extends PointChartValue> constructor
PointDataSet<T extends PointChartValue> ({
- required List<
T> data, - String? legend,
- double pointSize = 3,
- PdfColor color = PdfColors.blue,
- bool drawPoints = true,
- BuildCallback? shape,
- Widget buildValue(
- Context context,
- T value
- 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,
);