dashArray property

List<double>? dashArray
final

Dashes of the waterfall chart connector line.

Any number of values can be provided in the list. Odd values are considered as rendering size and even values are considered as gap.

Defaults to null.

Widget build(BuildContext context) {
  return SfCartesianChart(
    series: <WaterfallSeries<SalesData, num>>[
      WaterfallSeries<SalesData, num>(
        connectorLineSettings: WaterfallConnectorLineSettings(
          dashArray: [2,3]
        ),
      ),
    ],
  );
}

Implementation

final List<double>? dashArray;