shapeHoverStrokeWidth property

double? shapeHoverStrokeWidth
final

Specifies the stroke which should apply on the stroke of the shapes while hovering in the web platform.

Widget build(BuildContext context) {
 return Scaffold(
     body: Center(
       child: SfTheme(
         data: SfThemeData(
           mapsThemeData: SfMapsThemeData(
             shapeHoverStrokeColor : Colors.black
             shapeHoverStrokeWidth : 2.0
           )
         ),
         child: SfMaps(),
       ),
     )
  );
}

Implementation

final double? shapeHoverStrokeWidth;