AnimatedLineChart constructor

const AnimatedLineChart(
  1. LineChart chart, {
  2. Key? key,
  3. TapText? tapText,
  4. TextStyle? textStyle,
  5. required Color gridColor,
  6. required Color toolTipColor,
  7. List<Legend>? legends = const [],
  8. bool? showMarkerLines = false,
  9. List<DateTime> verticalMarker = const [],
  10. Color? verticalMarkerColor,
  11. List<Icon>? verticalMarkerIcon = const [],
  12. Color? iconBackgroundColor,
  13. bool? fillMarkerLines = false,
  14. double? innerGridStrokeWidth = 0.0,
  15. List<MaxMin>? filledMarkerLinesValues = const [],
  16. bool? legendsRightLandscapeMode = false,
  17. bool? useLineColorsInTooltip = false,
  18. bool? showMinutesInTooltip = true,
})

Implementation

const AnimatedLineChart(
  this.chart, {
  Key? key,
  this.tapText,
  this.textStyle,
  required this.gridColor,
  required this.toolTipColor,
  this.legends = const [],
  this.showMarkerLines = false,
  this.verticalMarker = const [],
  this.verticalMarkerColor,
  this.verticalMarkerIcon = const [],
  this.iconBackgroundColor,
  this.fillMarkerLines = false,
  this.innerGridStrokeWidth = 0.0,
  this.filledMarkerLinesValues = const [],
  this.legendsRightLandscapeMode = false,
  this.useLineColorsInTooltip = false,
  this.showMinutesInTooltip = true,
}) : super(key: key);