ChartLineData constructor

ChartLineData({
  1. String groupCode = '',
  2. int groupOrder = 0,
  3. required String x,
  4. double? y,
  5. List<YData> ys = const [],
  6. String xDisplay = '',
  7. String? yDisplay,
  8. List<int>? dashPattern = const [],
  9. int orderId = 0,
  10. int yAxis = 0,
  11. String? yAxisName,
  12. Color? color,
  13. Color? fillColor,
  14. int renderId = 0,
})

Implementation

ChartLineData(
    {this.groupCode = '',
    this.groupOrder = 0,
    required this.x,
    this.y,
    this.ys = const [],
    this.xDisplay = '',
    this.yDisplay,
    this.dashPattern = const [],
    this.orderId = 0,
    this.yAxis = 0,
    this.yAxisName,
    this.color,
    this.fillColor,
    this.renderId = 0});