BubbleSeries<T, D> constructor
BubbleSeries<T, D>({@required List<T> dataSource, @required ChartValueMapper<T, D> xValueMapper, @required ChartValueMapper<T, num> yValueMapper, ChartValueMapper<T, dynamic> sortFieldValueMapper, ChartValueMapper<T, num> sizeValueMapper, ChartValueMapper<T, Color> pointColorMapper, ChartValueMapper<T, String> dataLabelMapper, String xAxisName, String yAxisName, Color color, double width, MarkerSettings markerSettings, num minimumRadius, num maximumRadius, EmptyPointSettings emptyPointSettings, DataLabelSettings dataLabelSettings, bool isVisible, String name, bool enableTooltip, List<double> dashArray, double animationDuration, Color borderColor, double borderWidth, LinearGradient gradient, SelectionSettings selectionSettings, bool isVisibleInLegend, LegendIconType legendIconType, SortingOrder sortingOrder, String legendItemText, double opacity })
Implementation
BubbleSeries(
{@required List<T> dataSource,
@required ChartValueMapper<T, D> xValueMapper,
@required ChartValueMapper<T, num> yValueMapper,
ChartValueMapper<T, dynamic> sortFieldValueMapper,
ChartValueMapper<T, num> sizeValueMapper,
ChartValueMapper<T, Color> pointColorMapper,
ChartValueMapper<T, String> dataLabelMapper,
String xAxisName,
String yAxisName,
Color color,
double width,
MarkerSettings markerSettings,
num minimumRadius,
num maximumRadius,
EmptyPointSettings emptyPointSettings,
DataLabelSettings dataLabelSettings,
bool isVisible,
String name,
bool enableTooltip,
List<double> dashArray,
double animationDuration,
Color borderColor,
double borderWidth,
LinearGradient gradient,
SelectionSettings selectionSettings,
bool isVisibleInLegend,
LegendIconType legendIconType,
SortingOrder sortingOrder,
String legendItemText,
double opacity})
: minimumRadius = minimumRadius ?? 3,
maximumRadius = maximumRadius ?? 10,
super(
name: name,
xValueMapper: xValueMapper,
yValueMapper: yValueMapper,
sortFieldValueMapper: sortFieldValueMapper,
pointColorMapper: pointColorMapper,
dataLabelMapper: dataLabelMapper,
sizeValueMapper: sizeValueMapper,
dataSource: dataSource,
xAxisName: xAxisName,
yAxisName: yAxisName,
color: color,
width: width ?? 2,
markerSettings: markerSettings,
emptyPointSettings: emptyPointSettings,
dataLabelSettings: dataLabelSettings,
isVisible: isVisible,
enableTooltip: enableTooltip,
dashArray: dashArray,
animationDuration: animationDuration,
borderColor: borderColor,
borderWidth: borderWidth,
gradient: gradient,
selectionSettings: selectionSettings,
legendItemText: legendItemText,
isVisibleInLegend: isVisibleInLegend,
legendIconType: legendIconType,
sortingOrder: sortingOrder,
opacity: opacity);