wpf 工具包图表 LineSeries DataPointStyle

发布于 2024-11-04 07:08:36 字数 511 浏览 1 评论 0原文

我想添加没有点的 LineSeries 只是线。我想从代码而不是 xaml 动态地执行此操作。

我尝试使用以下代码执行此操作:

Style style = new Style(typeof(LineDataPoint));
style.Setters.Add(new Setter(LineDataPoint.VisibilityProperty,Visibility.Hidden));

var series = new LineSeries()
{
    Title = name,
    DependentValuePath = "Y",
    IndependentValuePath = "X",
    ItemsSource = new ObservableCollection<FloatingPoint>(),
    DataPointStyle = style,
};

chart.Series.Add(series);

但是它不起作用;我仍然看到要点。

I want to add LineSeries without points just lines. I want to do this dynamically from code not xaml.

I tried to do this with following code:

Style style = new Style(typeof(LineDataPoint));
style.Setters.Add(new Setter(LineDataPoint.VisibilityProperty,Visibility.Hidden));

var series = new LineSeries()
{
    Title = name,
    DependentValuePath = "Y",
    IndependentValuePath = "X",
    ItemsSource = new ObservableCollection<FloatingPoint>(),
    DataPointStyle = style,
};

chart.Series.Add(series);

However it doesn't work; I still see the points.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

你不是我要的菜∠ 2024-11-11 07:08:37

我在此处回答了类似的问题。

简而言之:Visibility 属性不起作用,您应该将Template 属性设置为 null。

更正的行:

Style style = new Style(typeof(LineDataPoint));
style.Setters.Add(new Setter(LineDataPoint.TemplateProperty, null));

I have answered a similar question here.

Briefly: the Visibility property won't work, you should set the Template property to null.

Corrected lines:

Style style = new Style(typeof(LineDataPoint));
style.Setters.Add(new Setter(LineDataPoint.TemplateProperty, null));
吃颗糖壮壮胆 2024-11-11 07:08:37

为了隐藏数据点,将宽度和高度设置为 0 相同。

  style.Setters.Add(new Setter(LineDataPoint.WidthProperty, 0.0));
  style.Setters.Add(new Setter(LineDataPoint.HeightProperty, 0.0));

In order to hide the data points set width and height to 0 of the same.

  style.Setters.Add(new Setter(LineDataPoint.WidthProperty, 0.0));
  style.Setters.Add(new Setter(LineDataPoint.HeightProperty, 0.0));
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文