LineChartData constructor
Creates a LineChartData instance.
x: The label for the x-axis.y: The value for the y-axis.color: The color of the data point.
Implementation
LineChartData({
required this.x,
required this.y,
required this.color,
});