length property
Length of the connector line. The value range from 0% to 100%.
Defaults to null
.
Widget build(BuildContext context) {
return Container(
child: SfCartesianChart(
dataLabelSettings: DataLabelSettings(
connectorLineSettings: ConnectorLineSettings(
length: '8%'
)
)
)
);
}
Implementation
final String? length;