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