selectionRectBorderWidth property
Border width of the selection zooming rectangle.
Used to change the stroke width of the selection rectangle.
Defaults to 1
.
Widget build(BuildContext context) {
return Container(
child: SfCartesianChart(
zoomPanBehavior: ZoomPanBehavior(
enableSelectionZooming: true, selectionRectBorderWidth: 2),
));
}
Implementation
final double selectionRectBorderWidth;