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