RangeColumnSeries<T, D> constructor

const RangeColumnSeries<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>? highValueMapper,
  6. required ChartValueMapper<T, num>? lowValueMapper,
  7. ChartValueMapper<T, dynamic>? sortFieldValueMapper,
  8. ChartValueMapper<T, Color>? pointColorMapper,
  9. ChartValueMapper<T, String>? dataLabelMapper,
  10. SortingOrder sortingOrder = SortingOrder.none,
  11. bool isTrackVisible = false,
  12. String? xAxisName,
  13. String? yAxisName,
  14. String? name,
  15. Color? color,
  16. double width = 0.7,
  17. double spacing = 0.0,
  18. MarkerSettings markerSettings = const MarkerSettings(),
  19. EmptyPointSettings emptyPointSettings = const EmptyPointSettings(),
  20. DataLabelSettings dataLabelSettings = const DataLabelSettings(),
  21. bool initialIsVisible = true,
  22. LinearGradient? gradient,
  23. LinearGradient? borderGradient,
  24. BorderRadius borderRadius = BorderRadius.zero,
  25. bool enableTooltip = true,
  26. double animationDuration = 1500,
  27. Color trackColor = Colors.grey,
  28. Color trackBorderColor = Colors.transparent,
  29. double trackBorderWidth = 1.0,
  30. double trackPadding = 0.0,
  31. Color borderColor = Colors.transparent,
  32. List<Trendline>? trendlines,
  33. double borderWidth = 2.0,
  34. SelectionBehavior? selectionBehavior,
  35. bool isVisibleInLegend = true,
  36. LegendIconType legendIconType = LegendIconType.seriesType,
  37. String? legendItemText,
  38. double opacity = 1.0,
  39. double animationDelay = 0,
  40. List<double>? dashArray,
  41. SeriesRendererCreatedCallback<T, D>? onRendererCreated,
  42. ChartPointInteractionCallback? onPointTap,
  43. ChartPointInteractionCallback? onPointDoubleTap,
  44. ChartPointInteractionCallback? onPointLongPress,
  45. CartesianShaderCallback? onCreateShader,
  46. List<int>? initialSelectedDataIndexes,
})

Creating an argument constructor of RangeColumnSeries class.

Implementation

const RangeColumnSeries({
  super.key,
  super.onCreateRenderer,
  super.dataSource,
  required super.xValueMapper,
  required super.highValueMapper,
  required super.lowValueMapper,
  super.sortFieldValueMapper,
  super.pointColorMapper,
  super.dataLabelMapper,
  super.sortingOrder,
  this.isTrackVisible = false,
  super.xAxisName,
  super.yAxisName,
  super.name,
  super.color,
  this.width = 0.7,
  this.spacing = 0.0,
  super.markerSettings,
  super.emptyPointSettings,
  super.dataLabelSettings,
  super.initialIsVisible,
  super.gradient,
  super.borderGradient,
  this.borderRadius = BorderRadius.zero,
  super.enableTooltip = true,
  super.animationDuration,
  this.trackColor = Colors.grey,
  this.trackBorderColor = Colors.transparent,
  this.trackBorderWidth = 1.0,
  this.trackPadding = 0.0,
  super.borderColor = Colors.transparent,
  super.trendlines,
  super.borderWidth,
  super.selectionBehavior,
  super.isVisibleInLegend,
  super.legendIconType,
  super.legendItemText,
  super.opacity,
  super.animationDelay,
  super.dashArray,
  super.onRendererCreated,
  super.onPointTap,
  super.onPointDoubleTap,
  super.onPointLongPress,
  super.onCreateShader,
  super.initialSelectedDataIndexes,
});