bubbleHoverStrokeWidth property
Specifies the stroke which should apply on the stroke of the bubbles while hovering in the web platform.
Widget build(BuildContext context) {
return Scaffold(
body: Center(
child: SfTheme(
data: SfThemeData(
mapsThemeData: SfMapsThemeData(
bubbleHoverStrokeColor : Colors.black
bubbleHoverStrokeWidth : 2.0
)
),
child: SfMaps(),
),
)
);
}
Implementation
final double? bubbleHoverStrokeWidth;