width property
Width of the connector line.
Defaults to 1.0
Widget build(BuildContext context) {
return Container(
child: SfCartesianChart(
dataLabelSettings: DataLabelSettings(
connectorLineSettings: ConnectorLineSettings(
width: 2
)
)
));
}
Implementation
final double width;