I have a PieChart with Text displaying their values. My pie chart has a mouse event listener such that when i mouse over the chart, it creates a glow effect.
The problem here is that when my mouse goes over the Text, it blocked my mouse listener as my mouse is effectively over the Text instead of the PieChart. Is there any way i can display the Text but make it such that it's "invisible" to my mouse?
Pseudocode:
PieChart chart = new PieChart();
chart.setData(MY CHART DATA);
chart.getData().forEach(d -> {
Text text = new Text();
text.setText((int)d.getPieValue()+"");
MOVE TEXT TO THE RESPECTIVE PIE AREA
}