XyDataSeries<T, D> constructor
XyDataSeries<T, D> ({
- ValueKey<
String> ? key, - ChartSeriesRendererFactory<
T, D> ? onCreateRenderer, - SeriesRendererCreatedCallback? onRendererCreated,
- ChartPointInteractionCallback? onPointTap,
- ChartPointInteractionCallback? onPointDoubleTap,
- ChartPointInteractionCallback? onPointLongPress,
- CartesianShaderCallback? onCreateShader,
- ChartValueMapper<
T, D> ? xValueMapper, - ChartValueMapper<
T, dynamic> ? yValueMapper, - ChartValueMapper<
T, String> ? dataLabelMapper, - String? name,
- required List<
T> dataSource, - String? xAxisName,
- String? yAxisName,
- ChartValueMapper<
T, Color> ? pointColorMapper, - String? legendItemText,
- ChartValueMapper<
T, dynamic> ? sortFieldValueMapper, - LinearGradient? gradient,
- LinearGradient? borderGradient,
- ChartValueMapper<
T, num> ? sizeValueMapper, - ChartValueMapper<
T, num> ? highValueMapper, - ChartValueMapper<
T, num> ? lowValueMapper, - ChartValueMapper<
T, bool> ? intermediateSumPredicate, - ChartValueMapper<
T, bool> ? totalSumPredicate, - List<
Trendline> ? trendlines, - double? width,
- MarkerSettings? markerSettings,
- bool? isVisible,
- bool? enableTooltip,
- EmptyPointSettings? emptyPointSettings,
- DataLabelSettings? dataLabelSettings,
- double? animationDuration,
- List<
double> ? dashArray, - Color? borderColor,
- double? borderWidth,
- SelectionBehavior? selectionBehavior,
- bool? isVisibleInLegend,
- LegendIconType? legendIconType,
- double? opacity,
- double? animationDelay,
- Color? color,
- List<
int> ? initialSelectedDataIndexes, - SortingOrder? sortingOrder,
Creating an argument constructor of XyDataSeries class.
Implementation
XyDataSeries(
{ValueKey<String>? key,
ChartSeriesRendererFactory<T, D>? onCreateRenderer,
SeriesRendererCreatedCallback? onRendererCreated,
ChartPointInteractionCallback? onPointTap,
ChartPointInteractionCallback? onPointDoubleTap,
ChartPointInteractionCallback? onPointLongPress,
CartesianShaderCallback? onCreateShader,
ChartValueMapper<T, D>? xValueMapper,
ChartValueMapper<T, dynamic>? yValueMapper,
ChartValueMapper<T, String>? dataLabelMapper,
String? name,
required List<T> dataSource,
String? xAxisName,
String? yAxisName,
ChartValueMapper<T, Color>? pointColorMapper,
String? legendItemText,
ChartValueMapper<T, dynamic>? sortFieldValueMapper,
LinearGradient? gradient,
LinearGradient? borderGradient,
ChartValueMapper<T, num>? sizeValueMapper,
ChartValueMapper<T, num>? highValueMapper,
ChartValueMapper<T, num>? lowValueMapper,
ChartValueMapper<T, bool>? intermediateSumPredicate,
ChartValueMapper<T, bool>? totalSumPredicate,
List<Trendline>? trendlines,
double? width,
MarkerSettings? markerSettings,
bool? isVisible,
bool? enableTooltip,
EmptyPointSettings? emptyPointSettings,
DataLabelSettings? dataLabelSettings,
double? animationDuration,
List<double>? dashArray,
Color? borderColor,
double? borderWidth,
SelectionBehavior? selectionBehavior,
bool? isVisibleInLegend,
LegendIconType? legendIconType,
double? opacity,
double? animationDelay,
Color? color,
List<int>? initialSelectedDataIndexes,
SortingOrder? sortingOrder})
: super(
key: key,
onRendererCreated: onRendererCreated,
onCreateRenderer: onCreateRenderer,
onPointTap: onPointTap,
onPointDoubleTap: onPointDoubleTap,
onPointLongPress: onPointLongPress,
isVisible: isVisible,
legendItemText: legendItemText,
xAxisName: xAxisName,
dashArray: dashArray,
isVisibleInLegend: isVisibleInLegend,
borderColor: borderColor,
trendlines: trendlines,
borderWidth: borderWidth,
yAxisName: yAxisName,
color: color,
name: name,
width: width,
xValueMapper: xValueMapper != null
? (int index) => xValueMapper(dataSource[index], index)
: null,
yValueMapper: yValueMapper != null
? (int index) => yValueMapper(dataSource[index], index)
: null,
sortFieldValueMapper: sortFieldValueMapper != null
? (int index) => sortFieldValueMapper(dataSource[index], index)
: null,
pointColorMapper: pointColorMapper != null
? (int index) => pointColorMapper(dataSource[index], index)
: null,
dataLabelMapper: dataLabelMapper != null
? (int index) => dataLabelMapper(dataSource[index], index)
: null,
sizeValueMapper: sizeValueMapper != null
? (int index) => sizeValueMapper(dataSource[index], index)
: null,
highValueMapper: highValueMapper != null
? (int index) => highValueMapper(dataSource[index], index)
: null,
lowValueMapper: lowValueMapper != null
? (int index) => lowValueMapper(dataSource[index], index)
: null,
intermediateSumPredicate: intermediateSumPredicate != null
? (int index) =>
intermediateSumPredicate(dataSource[index], index)
: null,
totalSumPredicate: totalSumPredicate != null
? (int index) => totalSumPredicate(dataSource[index], index)
: null,
dataSource: dataSource,
emptyPointSettings: emptyPointSettings,
dataLabelSettings: dataLabelSettings,
enableTooltip: enableTooltip,
animationDuration: animationDuration,
selectionBehavior: selectionBehavior,
legendIconType: legendIconType,
sortingOrder: sortingOrder,
opacity: opacity,
animationDelay: animationDelay,
onCreateShader: onCreateShader,
gradient: gradient,
borderGradient: borderGradient,
markerSettings: markerSettings,
initialSelectedDataIndexes: initialSelectedDataIndexes);