ChartPainterModel constructor

ChartPainterModel(
  1. Model parent,
  2. String? id, {
  3. dynamic type,
  4. dynamic showlegend,
  5. dynamic title,
  6. dynamic horizontal,
  7. dynamic showtips,
  8. dynamic animated,
  9. dynamic selected,
  10. dynamic legendsize,
  11. dynamic onclick,
})

Implementation

ChartPainterModel(Model super.parent, super.id,
    {dynamic type,
    dynamic showlegend,
    dynamic title,
    dynamic horizontal,
    dynamic showtips,
    dynamic animated,
    dynamic selected,
    dynamic legendsize,
    dynamic onclick})
    : super(scope: parent.scope) {
  this.selected = selected;
  this.title = title;
  this.animated = animated;
  this.horizontal = horizontal;
  this.showlegend = showlegend;
  this.showtips = showtips;
  this.legendsize = legendsize;
  this.type = type?.trim()?.toLowerCase();
  busy = false;
}