ChartBar constructor
const
ChartBar({
- Key? key,
- bool animate = false,
- List<
ChartLineData> lineData = const [], - double height = 200.0,
- bool vertical = true,
- int titleFontSize = 14,
- bool showBarLabel = false,
- double maskFontSize = 18.0,
- bool showLegend = true,
- bool showChartTitle = true,
- bool showAxisLine = false,
- Widget? loadingWidget,
- String groupType = 'grouped',
- bool hidePrimaryAxis = false,
- bool hideSecondaryAxis = false,
- bool hideDomainAxis = false,
Implementation
const ChartBar(
{Key? key,
this.animate = false,
this.lineData = const [],
this.height = 200.0,
this.vertical = true,
this.titleFontSize = 14,
this.showBarLabel = false,
this.maskFontSize = 18.0,
this.showLegend = true,
this.showChartTitle = true,
this.showAxisLine = false,
this.loadingWidget,
this.groupType = 'grouped',
this.hidePrimaryAxis = false,
this.hideSecondaryAxis = false,
this.hideDomainAxis = false})
: super(key: key);