tooltipLabelColor property

Color tooltipLabelColor
final

Specifies the text color of the tooltip.

Widget build(BuildContext context) {
  return Scaffold(
    body: Center(
      child: SfTheme(
        data: SfThemeData(
          chartThemeData: SfChartThemeData(
            tooltipLabelColor: Colors.amber
          )
        ),
        child: SfCartesianChart(
          tooltipBehavior: TooltipBehavior(enable: true),
          series: <ChartSeries<Sample,num>>[
            LineSeries(
              dataSource: chartData,
              xValueMapper: (Sample data, _) => data.x,
              yValueMapper: (Sample data, _) => data.y
            )
          ],
        )
      ),
    )
  );
}

Implementation

final Color tooltipLabelColor;