series method

Chart series(
  1. ChartSeries series, {
  2. Time popIn = const Time.relative(0.6),
  3. Stagger? stagger,
  4. Anchor? shared,
  5. 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,
);