LineSeries<T> constructor

LineSeries<T>({
  1. required T x,
  2. required double? y,
  3. required String xDisplay,
  4. required String? yDisplay,
  5. required int groupOrder,
  6. required String groupCode,
  7. List<int>? dashPattern = const [],
  8. Color? color,
  9. Color? fillColor,
  10. String unit = '',
})

Implementation

LineSeries(
    {required this.x,
    required this.y,
    required this.xDisplay,
    required this.yDisplay,
    required this.groupOrder,
    required this.groupCode,
    this.dashPattern = const [],
    this.color,
    this.fillColor,
    this.unit = ''});