ScatterPlotChart constructor
ScatterPlotChart(
- List<
Series< seriesList, {dynamic, num> > - bool? animate,
- Duration? animationDuration,
- AxisSpec? domainAxis,
- NumericAxisSpec? primaryMeasureAxis,
- NumericAxisSpec? secondaryMeasureAxis,
- LinkedHashMap<
String, NumericAxisSpec> ? disjointMeasureAxes, - PointRendererConfig<
num> ? defaultRenderer, - List<
SeriesRendererConfig< ? customSeriesRenderers,num> > - List<
ChartBehavior< ? behaviors,num> > - List<
SelectionModelConfig< ? selectionModels,num> > - RTLSpec? rtlSpec,
- LayoutConfig? layoutConfig,
- bool defaultInteractions = true,
- bool? flipVerticalAxis,
- UserManagedState<
num> ? userManagedState,
Implementation
ScatterPlotChart(
List<common.Series<dynamic, num>> seriesList, {
bool? animate,
Duration? animationDuration,
common.AxisSpec? domainAxis,
common.NumericAxisSpec? primaryMeasureAxis,
common.NumericAxisSpec? secondaryMeasureAxis,
LinkedHashMap<String, common.NumericAxisSpec>? disjointMeasureAxes,
common.PointRendererConfig<num>? defaultRenderer,
List<common.SeriesRendererConfig<num>>? customSeriesRenderers,
List<ChartBehavior<num>>? behaviors,
List<SelectionModelConfig<num>>? selectionModels,
common.RTLSpec? rtlSpec,
LayoutConfig? layoutConfig,
bool defaultInteractions = true,
bool? flipVerticalAxis,
UserManagedState<num>? userManagedState,
}) : super(
seriesList,
animate: animate,
animationDuration: animationDuration,
domainAxis: domainAxis,
primaryMeasureAxis: primaryMeasureAxis,
secondaryMeasureAxis: secondaryMeasureAxis,
disjointMeasureAxes: disjointMeasureAxes,
defaultRenderer: defaultRenderer,
customSeriesRenderers: customSeriesRenderers,
behaviors: behaviors,
selectionModels: selectionModels,
rtlSpec: rtlSpec,
layoutConfig: layoutConfig,
defaultInteractions: defaultInteractions,
flipVerticalAxis: flipVerticalAxis,
userManagedState: userManagedState,
);