ChartPainterSeriesModel constructor

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

Implementation

ChartPainterSeriesModel(
  Model super.parent,
  super.id, {
  dynamic x,
  dynamic y,
  dynamic y0,
  dynamic color,
  dynamic stroke,
  dynamic radius,
  dynamic size,
  dynamic label,
  this.type,
  dynamic animated,
  dynamic name,
  dynamic group,
  dynamic stack,
  dynamic showarea,
  dynamic showline,
  dynamic showpoints,
  dynamic curved,
      dynamic onclick
}) {
  data = Data();
  this.x = x;
  this.y = y;
  this.y0 = y0;
  this.color = color;
  this.stroke = stroke;
  this.radius = radius;
  this.curved = curved;
  this.size = size;
  this.label = label;
  this.name = name;
  this.group = group;
  this.stack = stack;
  this.showarea = showarea;
  this.showline = showline;
  this.showpoints = showpoints;
  this.onclick = onclick;
}