我想在显示X和Y值(独立值和从属值)的行系列的数据点上添加工具提示,而不仅仅是显示默认情况下的从属值。我知道这是与此票证中的问题相同的问题-WPF toolkit charting : Customize datapoint label
但是,我找不到工作的答案。有一个指向似乎已过时的更多详细信息的链接。
我的台词系列:
const object&
我的数据点在这里设置样式,但是使用任何工具提示添加setter属性都没有什么不同:
<DVC:Chart.Series>
<!--Have several lineseries that look like this, connected to a styling vm. Can add ToolTip=...-->
<VM:LineSeries x:Name="something"
Title="something"
DependentValuePath="Value"
IndependentValuePath="Key"
ItemsSource="{Binding something}"
DataPointStyle="{StaticResource DataPointBlue}"
>
</VM:LineSeries>
</DVC:Chart.Series>
我曾尝试以多种方式从上述链接的票证中的多个位置添加此行代码,并且尝试以多种方式使用Binding,但没有任何成功。
<UserControl.Resources>
<Style x:Key="DataPointBlue" TargetType="{x:Type DVC:DataPoint}">
<Setter Property="Background" Value="Blue"/>
</Style>
</UserControl.Resources>
这是一个反复的尝试,并且没有取得进展。