9 Answers, 1 is accepted
0
Hello,
The default behavior of the ItemToolTip is to never hide, it only goes away when the mouse is not over the visual any more (this is the bar if you are using bar series). You can check our examples online - here and here. In both of these examples the ToolTip stays visible forever and there is no special code for this. So make sure that you get the same behavior from the provided links and make sure you have no settings in your app that interfere with the tool tip. Let us know how it goes.
Regards,
Petar Marchev
the Telerik team
The default behavior of the ItemToolTip is to never hide, it only goes away when the mouse is not over the visual any more (this is the bar if you are using bar series). You can check our examples online - here and here. In both of these examples the ToolTip stays visible forever and there is no special code for this. So make sure that you get the same behavior from the provided links and make sure you have no settings in your app that interfere with the tool tip. Let us know how it goes.
Regards,
Petar Marchev
the Telerik team
Explore the entire Telerik portfolio by downloading Telerik DevCraft Ultimate.
0
scorp
Top achievements
Rank 1
answered on 26 Oct 2012, 03:36 PM
I am not getting a similar behavior. I am using TooltipService.
<Image Source="/Resources/icon-help.png" Margin="10,0,0,0" Cursor="Hand" ToolTipService.ToolTip="Some text." />
The tooltip goes away after a few seconds.
<Image Source="/Resources/icon-help.png" Margin="10,0,0,0" Cursor="Hand" ToolTipService.ToolTip="Some text." />
The tooltip goes away after a few seconds.
0
scorp
Top achievements
Rank 1
answered on 31 Oct 2012, 01:13 PM
Any help on this one?
0
Hi Scorp,
From the code snippet you have provided I can see that you are not using a RadChart. You are not using any of the Telerik controls. You are using the ToolTipService, which is not a Telerik control. I suggest you read about it online, you can start here.
Let us know if you have any questions related to the Telerik controls.
All the best,
Petar Marchev
the Telerik team
From the code snippet you have provided I can see that you are not using a RadChart. You are not using any of the Telerik controls. You are using the ToolTipService, which is not a Telerik control. I suggest you read about it online, you can start here.
Let us know if you have any questions related to the Telerik controls.
All the best,
Petar Marchev
the Telerik team
Explore the entire Telerik portfolio by downloading Telerik DevCraft Ultimate.
0
scorp
Top achievements
Rank 1
answered on 01 Nov 2012, 03:58 PM
Sorry about that I have the following code snippet that uses the Rad Controls.
<Style x:Key="chartTitle" TargetType="telerik:AxisTitle">
<Setter Property="ToolTipService.ToolTip" Value="Some text." />
</Style>
I am currently using telerik controls 2011.1.419.1040 version. Would I need the latest controls to use RadTooltipService.
<Style x:Key="chartTitle" TargetType="telerik:AxisTitle">
<Setter Property="ToolTipService.ToolTip" Value="Some text." />
</Style>
I am currently using telerik controls 2011.1.419.1040 version. Would I need the latest controls to use RadTooltipService.
0
Hi scorp,
Yes, the RadToolTipService is not present in the assembly in mind. You can download the latest version of our controls which contain the RadToolTipService.
May be you need code similar to this:
I will again suggest you check for solutions online, such as here and here and many other sites which you can find with google.
Kind regards,
Petar Marchev
the Telerik team
Yes, the RadToolTipService is not present in the assembly in mind. You can download the latest version of our controls which contain the RadToolTipService.
May be you need code similar to this:
<
Style
x:Key
=
"chartTitle"
TargetType
=
"telerik:AxisTitle"
>
<
Setter
Property
=
"ToolTipService.ToolTip"
Value
=
"Some text."
/>
<
Setter
Property
=
"ToolTipService.ShowDuration"
Value
=
"2000
00
0"
/>
</
Style
>
I will again suggest you check for solutions online, such as here and here and many other sites which you can find with google.
Kind regards,
Petar Marchev
the Telerik team
Explore the entire Telerik portfolio by downloading Telerik DevCraft Ultimate.
0
scorp
Top achievements
Rank 1
answered on 05 Nov 2012, 10:04 PM
It seems that ToolTipService.ShowDuration is not supported in Silverlight framework.
I upgraded to the latest version of RadControls for silverlight however I am having trouble displaying the tooltip.
Is there any test project with a simple example to display the telerik tooltip.
Thanks.
0
Accepted
Hi,
I apologize, I missed the fact that the ToolTip in Silverlight is somewhat limited. You can use the Telerik RadToolTipService:
I have attached a simple app to demonstrate this.
Greetings,
Petar Marchev
the Telerik team
I apologize, I missed the fact that the ToolTip in Silverlight is somewhat limited. You can use the Telerik RadToolTipService:
<
Border
telerik:RadToolTipService.ToolTipContent
=
"Tool tip text"
telerik:RadToolTipService.ShowDuration
=
"100000"
/>
I have attached a simple app to demonstrate this.
Greetings,
Petar Marchev
the Telerik team
Explore the entire Telerik portfolio by downloading Telerik DevCraft Ultimate.
0
scorp
Top achievements
Rank 1
answered on 09 Nov 2012, 04:31 PM
Thanks for your help.