HiloOpenCloseSeries<T, D> constructor
HiloOpenCloseSeries<T, D> ({
- ValueKey<
String> ? key, - ChartSeriesRendererFactory<
T, D> ? onCreateRenderer, - required List<
T> dataSource, - required ChartValueMapper<
T, D> xValueMapper, - required ChartValueMapper<
T, num> lowValueMapper, - required ChartValueMapper<
T, num> highValueMapper, - required ChartValueMapper<
T, num> openValueMapper, - required ChartValueMapper<
T, num> closeValueMapper, - ChartValueMapper<
T, num> ? volumeValueMapper, - ChartValueMapper<
T, dynamic> ? sortFieldValueMapper, - ChartValueMapper<
T, Color> ? pointColorMapper, - ChartValueMapper<
T, String> ? dataLabelMapper, - SortingOrder? sortingOrder,
- String? xAxisName,
- String? yAxisName,
- String? name,
- Color? bearColor,
- Color? bullColor,
- EmptyPointSettings? emptyPointSettings,
- DataLabelSettings? dataLabelSettings,
- bool? isVisible,
- bool? enableTooltip,
- double? animationDuration,
- double? borderWidth,
- SelectionBehavior? selectionBehavior,
- bool? isVisibleInLegend,
- LegendIconType? legendIconType,
- String? legendItemText,
- List<
double> ? dashArray, - double? opacity,
- double? animationDelay,
- double? spacing,
- List<
int> ? initialSelectedDataIndexes, - bool? showIndicationForSameValues,
- List<
Trendline> ? trendlines, - SeriesRendererCreatedCallback? onRendererCreated,
- ChartPointInteractionCallback? onPointTap,
- ChartPointInteractionCallback? onPointDoubleTap,
- ChartPointInteractionCallback? onPointLongPress,
- CartesianShaderCallback? onCreateShader,
Creating an argument constructor of HiloOpenCloseSeries class.
Implementation
HiloOpenCloseSeries(
{ValueKey<String>? key,
ChartSeriesRendererFactory<T, D>? onCreateRenderer,
required List<T> dataSource,
required ChartValueMapper<T, D> xValueMapper,
required ChartValueMapper<T, num> lowValueMapper,
required ChartValueMapper<T, num> highValueMapper,
required ChartValueMapper<T, num> openValueMapper,
required ChartValueMapper<T, num> closeValueMapper,
ChartValueMapper<T, num>? volumeValueMapper,
ChartValueMapper<T, dynamic>? sortFieldValueMapper,
ChartValueMapper<T, Color>? pointColorMapper,
ChartValueMapper<T, String>? dataLabelMapper,
SortingOrder? sortingOrder,
String? xAxisName,
String? yAxisName,
String? name,
Color? bearColor,
Color? bullColor,
EmptyPointSettings? emptyPointSettings,
DataLabelSettings? dataLabelSettings,
bool? isVisible,
bool? enableTooltip,
double? animationDuration,
double? borderWidth,
SelectionBehavior? selectionBehavior,
bool? isVisibleInLegend,
LegendIconType? legendIconType,
String? legendItemText,
List<double>? dashArray,
double? opacity,
double? animationDelay,
double? spacing,
List<int>? initialSelectedDataIndexes,
bool? showIndicationForSameValues,
List<Trendline>? trendlines,
SeriesRendererCreatedCallback? onRendererCreated,
ChartPointInteractionCallback? onPointTap,
ChartPointInteractionCallback? onPointDoubleTap,
ChartPointInteractionCallback? onPointLongPress,
CartesianShaderCallback? onCreateShader})
: super(
key: key,
onCreateRenderer: onCreateRenderer,
name: name,
dashArray: dashArray,
spacing: spacing,
xValueMapper: xValueMapper,
lowValueMapper: lowValueMapper,
highValueMapper: highValueMapper,
// ignore: unnecessary_null_comparison
openValueMapper: openValueMapper != null
? (int index) => openValueMapper(dataSource[index], index)
: null,
// ignore: unnecessary_null_comparison
closeValueMapper: closeValueMapper != null
? (int index) => closeValueMapper(dataSource[index], index)
: null,
// ignore: unnecessary_null_comparison
volumeValueMapper: volumeValueMapper != null
? (int index) => volumeValueMapper(dataSource[index], index)
: null,
sortFieldValueMapper: sortFieldValueMapper,
pointColorMapper: pointColorMapper,
dataLabelMapper: dataLabelMapper,
dataSource: dataSource,
xAxisName: xAxisName,
yAxisName: yAxisName,
dataLabelSettings: dataLabelSettings,
isVisible: isVisible,
emptyPointSettings: emptyPointSettings,
enableTooltip: enableTooltip,
animationDuration: animationDuration,
borderWidth: borderWidth ?? 2,
selectionBehavior: selectionBehavior,
legendItemText: legendItemText,
isVisibleInLegend: isVisibleInLegend,
legendIconType: legendIconType,
sortingOrder: sortingOrder,
opacity: opacity,
animationDelay: animationDelay,
onCreateShader: onCreateShader,
bearColor: bearColor ?? Colors.red,
bullColor: bullColor ?? Colors.green,
initialSelectedDataIndexes: initialSelectedDataIndexes,
onRendererCreated: onRendererCreated,
onPointTap: onPointTap,
onPointDoubleTap: onPointDoubleTap,
onPointLongPress: onPointLongPress,
showIndicationForSameValues: showIndicationForSameValues ?? false,
trendlines: trendlines);