type property

ConnectorType type
final

Type of the connector line.

Defaults to ConnectorType.line

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

Implementation

final ConnectorType type;