In this example, is there a way to dynamically "highlight" the X axis label (i.e. if X axis is months "Jan", "Feb", etc...) when interact with the chart?
trackballBehavior: TrackballBehavior(
enable: true,
activationMode: ActivationMode.singleTap,
shouldAlwaysShow: true,
lineType: TrackballLineType.vertical,
lineDashArray: [10, 10],
lineWidth: 1,
onTrackballPositionChanging: (TrackballArgs args) {
// how do I access and change color of a currently hovered/touched X axis label?
},
),
Use case
In this example, is there a way to dynamically "highlight" the X axis label (i.e. if X axis is months "Jan", "Feb", etc...) when interact with the chart?
Proposal
Implementing such feature would be useful.