tags:

views:

181

answers:

1

Hi all

I am using WPF ToolKit Chart Control to create a columneries chart. Whenever I move mouse to my Chart, the tooltip value will be displayed. I dont need this tooltip, So How can I turn off this.

alt text

A: 

I haven't used this control so I can't say for sure but in general you can disable tooltips by setting the attached property ToolTipService.IsEnabled to false like this:

<TextBlock ToolTip="World" ToolTipService.IsEnabled="False">Hello</TextBlock>
Oskar