LineSeries<T, D> constructor

const LineSeries<T, D>(
  1. {ValueKey<String>? key,
  2. ChartSeriesRendererFactory<T, D>? onCreateRenderer,
  3. List<T>? dataSource,
  4. required ChartValueMapper<T, D>? xValueMapper,
  5. required ChartValueMapper<T, num>? yValueMapper,
  6. ChartValueMapper<T, dynamic>? sortFieldValueMapper,
  7. ChartValueMapper<T, Color>? pointColorMapper,
  8. ChartValueMapper<T, String>? dataLabelMapper,
  9. String? xAxisName,
  10. String? yAxisName,
  11. Color? color,
  12. double width = 2,
  13. MarkerSettings markerSettings = const MarkerSettings(),
  14. EmptyPointSettings emptyPointSettings = const EmptyPointSettings(),
  15. DataLabelSettings dataLabelSettings = const DataLabelSettings(),
  16. List<Trendline>? trendlines,
  17. bool initialIsVisible = true,
  18. String? name,
  19. bool enableTooltip = true,
  20. List<double>? dashArray,
  21. double animationDuration = 1500,
  22. SelectionBehavior? selectionBehavior,
  23. bool isVisibleInLegend = true,
  24. LegendIconType legendIconType = LegendIconType.seriesType,
  25. SortingOrder sortingOrder = SortingOrder.none,
  26. String? legendItemText,
  27. double opacity = 1.0,
  28. double animationDelay = 0,
  29. List<int>? initialSelectedDataIndexes,
  30. SeriesRendererCreatedCallback<T, D>? onRendererCreated,
  31. ChartPointInteractionCallback? onPointTap,
  32. ChartPointInteractionCallback? onPointDoubleTap,
  33. ChartPointInteractionCallback? onPointLongPress,
  34. CartesianShaderCallback? onCreateShader}
)

Creating an argument constructor of LineSeries class.

Implementation

const LineSeries({
  super.key,
  super.onCreateRenderer,
  super.dataSource,
  required super.xValueMapper,
  required super.yValueMapper,
  super.sortFieldValueMapper,
  super.pointColorMapper,
  super.dataLabelMapper,
  super.xAxisName,
  super.yAxisName,
  super.color,
  double width = 2,
  super.markerSettings,
  super.emptyPointSettings,
  super.dataLabelSettings,
  super.trendlines,
  super.initialIsVisible,
  super.name,
  super.enableTooltip = true,
  super.dashArray,
  super.animationDuration,
  super.selectionBehavior,
  super.isVisibleInLegend,
  super.legendIconType,
  super.sortingOrder,
  super.legendItemText,
  super.opacity,
  super.animationDelay,
  super.initialSelectedDataIndexes,
  super.onRendererCreated,
  super.onPointTap,
  super.onPointDoubleTap,
  super.onPointLongPress,
  super.onCreateShader,
}) : super(borderWidth: width);