AppChart constructor
const
AppChart({
- Key? key,
- required AppChartType type,
- required List<
AppChartData> data, - String? title,
- double? height,
- double? width,
- EdgeInsetsGeometry? padding,
- List<
Color> ? colorPalette, - bool showLabels = true,
- bool showLegend = true,
- bool showValues = true,
- bool animated = true,
Implementation
const AppChart({
Key? key,
required this.type,
required this.data,
this.title,
this.height,
this.width,
this.padding,
this.colorPalette,
this.showLabels = true,
this.showLegend = true,
this.showValues = true,
this.animated = true,
}) : super(key: key);