renderScatterChartAsync method

Future<RenderedChart> renderScatterChartAsync(
  1. Element output,
  2. ChartSeriesPair chartSeries
)

Same as renderScatterChart, but async.

Implementation

Future<RenderedChart> renderScatterChartAsync(
    Element output, ChartSeriesPair chartSeries) async {
  await _ensureLoaded();
  return renderScatterChart(output, chartSeries);
}