IndicatorChartConfig constructor
IndicatorChartConfig({
- required double value,
- required String label,
- double? previousValue,
- String? unit,
- int precision = 0,
- ChartTheme? theme,
- TitlesData? title,
- ChartController? controller,
Implementation
IndicatorChartConfig({
required this.value,
required this.label,
this.previousValue,
this.unit,
this.precision = 0,
super.theme,
super.title,
super.controller,
}) : super(type: ChartType.indicator, series: []);