tooltipShape property

SfTooltipShape tooltipShape
final

Renders rectangular or paddle shape tooltip.

Defaults to SfRectangularTooltipShape

SfRangeValues _values = SfRangeValues(40.0, 60.0);

SfRangeSelector(
 min: 0.0,
 max: 100.0,
 initialValues: _values,
 showLabels: true,
 showTicks: true,
 interval: 20,
 enableTooltip: true,
 tooltipShape: SfPaddleTooltipShape(),
 child: Container(
    height: 150,
    color: Colors.pink[200],
 ),
)

Implementation

final SfTooltipShape tooltipShape;