PieChartSeriesModel constructor

PieChartSeriesModel(
  1. Model 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 animated,
  11. dynamic name,
  12. dynamic group,
  13. dynamic stack,
  14. dynamic showarea,
  15. dynamic showline,
  16. dynamic showpoints,
})

Implementation

PieChartSeriesModel(
  super.parent,
  super.id, {
  dynamic x,
  dynamic y,
  dynamic color,
  dynamic stroke,
  dynamic radius,
  dynamic size,
  dynamic label,
  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.name = name;
  this.group = group;
  this.stack = stack;
  this.showarea = showarea;
  this.showline = showline;
  this.showpoints = showpoints;
}