ChartModel constructor
ChartModel(
- WidgetModel? parent,
- String? id, {
- dynamic type,
- dynamic showlegend,
- dynamic horizontal,
- dynamic animated,
- dynamic selected,
- dynamic legendsize,
Implementation
ChartModel(
super.parent,
super.id, {
dynamic type,
dynamic showlegend,
dynamic horizontal,
dynamic animated,
dynamic selected,
dynamic legendsize,
}) {
this.selected = selected;
this.animated = animated;
this.horizontal = horizontal;
this.showlegend = showlegend;
this.legendsize = legendsize;
this.type = type?.trim()?.toLowerCase();
busy = false;
}