WPF图表自定义BarDataPoint工具提示显示持续时间

时间:2015-04-23 04:46:17

标签: c# wpf charts tooltip

我有一个使用BarSeries的WPF图表。我试图改变BarDataPoint的默认工具提示显示持续时间。

我尝试在BarDataPointStyle模板中添加以下代码:

<Setter Property="ToolTipService.InitialShowDelay" Value="0"/>
<Setter Property="ToolTipService.ShowDuration" Value="30000"/>

但是没有用。

有没有办法更改BarDataPoint的默认工具提示显示持续时间?

1 个答案:

答案 0 :(得分:0)

我发现,通过在InitializeComponent();下添加以下代码来解决问题:

ToolTipService.ShowDurationProperty.OverrideMetadata(typeof(DependencyObject), new FrameworkPropertyMetadata(Int32.MaxValue));

对我有用!