trackballTextStyle property
Specifies the text style for trackball label.
Widget build(BuildContext context) {
return Scaffold(
body: Center(
child: SfTheme(
data: SfThemeData(
chartThemeData: SfChartThemeData(
trackballTextStyle: TextStyle(color: Colors.red)
)
),
child: SfCartesianChart(),
),
)
);
}
Implementation
final TextStyle? trackballTextStyle;