LineChart constructor

const LineChart({
  1. Key? key,
  2. required Coin coinData,
  3. required double inrRate,
  4. Gradient? chartColor,
  5. Color? chartBorderColor,
  6. Color? toolTipBgColor,
  7. Color? toolTipTextColor,
  8. bool? showToolTip,
  9. bool? showInterval,
  10. Color? intervalSelectedTextColor,
  11. Color? intervalUnselectedTextColor,
  12. double? intervalTextSize,
  13. MainAxisAlignment? intervalAlignment,
})

Implementation

const LineChart({
  Key? key,
  required this.coinData,
  required this.inrRate,
  this.chartColor,
  this.chartBorderColor,
  this.toolTipBgColor,
  this.toolTipTextColor,
  this.showToolTip,
  this.showInterval,
  this.intervalSelectedTextColor,
  this.intervalUnselectedTextColor,
  this.intervalTextSize,
  this.intervalAlignment,
}) : super(key: key);