operator []= method
void
operator []=(
- ChartDataPointType pointType,
- dynamic value
Implementation
void operator []=(ChartDataPointType pointType, dynamic value) {
if (pointType == ChartDataPointType.y) {
y = value;
}
}