LineChart constructor
const
LineChart({
- Key? key,
- required Coin coinData,
- required double inrRate,
- Gradient? chartColor,
- Color? chartBorderColor,
- Color? toolTipBgColor,
- Color? toolTipTextColor,
- bool? showToolTip,
- bool? showInterval,
- Color? intervalSelectedTextColor,
- Color? intervalUnselectedTextColor,
- double? intervalTextSize,
- 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);