elevation property

double elevation
final

Elevation of the tooltip.

Defaults to 2.5.

Widget build(BuildContext context) {
   return Container(
       child: SfCartesianChart(
          tooltipBehavior: TooltipBehavior(enable: true, elevation: 10),
       ));
}

Implementation

final double elevation;