ChartSeriesModel constructor

ChartSeriesModel(
  1. WidgetModel parent,
  2. String? id, {
  3. dynamic x,
  4. dynamic y,
  5. dynamic color,
  6. dynamic stroke,
  7. dynamic radius,
  8. dynamic size,
  9. dynamic label,
  10. dynamic labelled,
  11. dynamic labelType,
  12. String? type,
  13. dynamic tooltips,
  14. dynamic animated,
  15. dynamic name,
  16. dynamic group,
  17. dynamic stack,
  18. dynamic showarea,
  19. dynamic showline,
  20. dynamic showpoints,
})

Implementation

ChartSeriesModel(
  WidgetModel parent,
  String? id, {
    dynamic x,
    dynamic y,
    dynamic color,
    dynamic stroke,
    dynamic radius,
    dynamic size,
    dynamic label,
    dynamic labelled,
    dynamic labelType,
    this.type,
    dynamic tooltips,
    dynamic animated,
    dynamic name,
    dynamic group,
    dynamic stack,
    dynamic showarea,
    dynamic showline,
    dynamic showpoints,
  }
) : super(parent, id) {
  this.x = x;
  this.y = y;
  this.color = color;
  this.stroke = stroke;
  this.radius = radius;
  this.size = size;
  this.label = label;
  this.labelled = labelled;
  this.labelType = labelType;
  this.tooltips = tooltips;
  this.animated = animated;
  this.name = name;
  this.group = group;
  this.stack = stack;
  this.showarea = showarea;
  this.showline = showline;
  this.showpoints = showpoints;
}