I have columnseries with tool tips all working correctly. My problem is the tool tips are showing up much to fast, I want the standard 400ms delay that other framework elements have, can you tell me how to configure delay.
Thanks
Hello Dhorth,
I have looked into the functionality that you are trying to achieve and I have found an approach that can allow delaying the opening of the tooltip of the series. To implement that delay, you can get the default style for the tooltip and animate the opacity property of its root element. You can use the Triggers collection of the root border and add an EventTrigger for the loaded event and there you start a Storyboard that sets the opacity of the root border to 0 and then set it back to 1, after the time that you wish. Here is how the animation can look like:
<Border.Triggers>
<EventTrigger RoutedEvent="Loaded" >
<BeginStoryboard>
<Storyboard>
<DoubleAnimationUsingKeyFrames Storyboard.TargetProperty="Opacity">
<DiscreteDoubleKeyFrame Value="0" KeyTime="0:0:0" />
<DiscreteDoubleKeyFrame Value="1" KeyTime="0:0:1" />
</DoubleAnimationUsingKeyFrames>
</Storyboard>
</BeginStoryboard>
</EventTrigger>
</Border.Triggers>
I am attaching a sample application that shows how you can implement this approach.
Please let me know if you need any further assistnace on the matter.
Sincerely,
Krasimir, MCPD
Developer Support Supervisor - XAML
Infragistics
www.infragistics.com/support
Hello,
After working on this and doing some research, Tooltip delay has been determined to be a new product idea. You can suggest new product ideas for future versions (or vote for existing ones) at http://ideas.infragistics.com.
There are many benefits to submitting an product idea:
- Direct communication with our product management team regarding your product idea.
- Notifications whenever new information regarding your idea becomes available.
- Ability to vote on your favorite product ideas to let us know which ones are the most important to you. You will have ten votes for this and can change which ideas you are voting for at any time.
- Allow you to shape the future of our products by requesting new controls and products altogether.
- You and other developers can discuss existing product ideas with members of our Product Management team.
Steps to create your idea:
The Product Idea site puts you in the driver’s seat and allows you to track the progress of your ideas at any time, see how many votes it got, read comments from other developers in the community, and see if someone from the product team has additional questions for you.
Thank you for contacting Infragistics.