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