如何设置wpf扩展工具包图表lineseries作为顶级系列?

时间:2013-03-12 10:47:25

标签: wpf charts wpftoolkit lineseries

有什么方法可以将我的图表组件中任何显示的线条系列带到前面? 我尝试了Focus(),但这不起作用。 感谢

1 个答案:

答案 0 :(得分:1)

var series = (Series)chart.Series[0]; // you can replace 0 by a more appropriate index
series.SetValue(Panel.ZIndexProperty, 99);

我为ZIndex使用了任意值99,实际上你可以使用任何大于0的值。

Here is the official documentation在这个属性上。