2X faster development
The ultimate UWP UI toolkit to boost your development speed.
Description: This article describes how to delay the tooltip showing time in chart.
Solution: This requirement can be achieved by using the ShowDuration property as shown in the following code example. XAML<chart:ColumnSeries x:Name="Series1" Label="Series1" XBindingPath="Name" ShowTooltip="True" chart:ChartTooltip.ShowDuration="5000" YBindingPath="Count1" ItemsSource="{Binding Data}"/> C#ColumnSeries series = new ColumnSeries() { ItemsSource = view.Data, XBindingPath = "Name", YBindingPath = "Count1", ShowTooltip = true, Label = "Series1" }; ChartTooltip.SetShowDuration(series, 5000);
Note: You should set values for the ShowDuration property in milliseconds.
|
2X faster development
The ultimate UWP UI toolkit to boost your development speed.
This page will automatically be redirected to the sign-in page in 10 seconds.