I'm working on a WPF application and using the RadChart control. I'm familiar with the ItemToolTipFormat and DataPointMember="Tooltip" features, but I wonder if the following is possible:
I've attached an image for demonstration:

Is it possible that when I hover with the mouse cursor on the x axis categories, I'll get a tooltip: For example: In the attached image, when I hover on the word May (or Sep or Nov and etc) with the mouse cursor, I will then get a tooltip.
What happens with the mentioned features above, I get a tooltip on the diagram itself, but as mentioned, I want a tooltip on the category itself on the x axis (when I hover on the months' words as displayed in the image).
Thank you in advance for your help!
That's a good question. As far as I can find you're not able to set a tooltip on those labels without using controversial implementations. I have a solution, but it's rather hacky and only supports fixed axis data. It does not support binding (I haven't found a away to pass ToolTip content through
ItemMappingelements).The solution has 3 parts; a
ResourceDictionary, aConverterand theRadChartcontrol.The
ResourceDictionary(Named "ToolTipResources.xaml", located in the Resource folder of the same dll) contains the contents of the ToolTips:The
Converterlinks label names with their associated ToolTip content:Addition to the
RadChartcontrol:Full RadChart view (of your example from the Telerik Documentation):