I am using React Kendo bar chart library, trying to add a tooltip when hovering over the x-axis "categoryAxis" labels, but there is no way or method offered by Kendo to achieve this, any thoughts?
There might be a way with using the visual method within categoryAxis.labels, but I'm not sure how
Visual method will give you most control. However, for something more simple, you could assign a unique color to the category axis labels so you can select them easily (e.g. your regular color with opacity of 0.9999)
Then in the render event of the chart, select all SVG TEXT elements within the chart that have that color and instantiate a KendoTooltip on each one.
Here is a DOJO DEMO