Currently, I am utilizing ScatterChart with CategoryAxis in JavaFX8 and have defined the following Categories: "least", "low", "default", "high", "highest".
While this setup is functional, I am looking to enhance it by highlighting the "default" category on the CategoryAxis in red to indicate its default status. The other categories should remain grey.
Although I can alter the color of all the CategoryAxis using CSS, my goal is to selectively change the color of only the "default" category while leaving the others unchanged.
Unfortunately, due to CategoryAxis being final, I am unable to attempt overwriting the drawing methods for customization.
If anyone has a solution or suggestion, your input would be greatly appreciated. Thank you.