Hi,
I'm working with StackedColumnSeries trackball.
I have a chart that uses trackball to show the tooltip, using tooltipDisplayMode: TrackballDisplayMode.groupAllPoints. Everything works fine, but one thing I noticed was that since there is a little spacing between the track line and tooltip, the user's finger would block viewing the tooltip.
Here is my trackballBehavior part:
trackballBehavior: TrackballBehavior(
activationMode: ActivationMode.singleTap,
tooltipDisplayMode: TrackballDisplayMode.groupAllPoints,
enable: true,
lineColor: Colors.black,
lineDashArray: [5, 5],
tooltipSettings: InteractiveTooltip(
enable: true,
format: 'point.y',
),
),
Is there a future plan to add option for spacing or already a way to add spacing between the track line and the tooltip?
Thanks.