series method
Chart
series(
- ChartSeries series, {
- Time popIn = const Time.relative(0.6),
- Stagger? stagger,
- Key? key,
A scatter chart over a single colored point series, popping in over
popIn with an optional stagger.
Implementation
Chart series(
ChartSeries series, {
Time popIn = const Time.relative(0.6),
Stagger? stagger,
Anchor? shared,
Key? key,
}) => Chart._(
kind: _ChartKind.scatter,
reveal: popIn,
series: [series],
color: series.color,
stagger: stagger,
shared: shared,
key: key,
);