type property

ConnectorType type
final

Type of the connector line.

Defaults to ConnectorType.line.

Also refer ConnectorType.

Widget build(BuildContext context) {
   return Container(
       child: SfCartesianChart(
          dataLabelSettings: DataLabelSettings(
           connectorLineSettings: ConnectorLineSettings(
            type: ConnectorType.curve
            )
          )
       )
    );
}

Implementation

final ConnectorType type;