WPF 工具包绘制 Lineseries 样式

发布于 2024-12-10 11:24:07 字数 159 浏览 2 评论 0原文

是否可以更改 LineSeries 的厚度? 是否可以将 LineSeries 显示为虚线? 我有关于 AreaSeries 的其他问题,无论我的所有 Area Series 都是从 x 轴绘制的。我想要的是我可以绘制这四个点 (2,2)、(2,6)、(8,6)、(8,2) 的区域。 我该如何管理它?

Is it possible to change the thickness of the LineSeries?
Is it possible to show LineSeries as dashed lines?
I have othe question about AreaSeries, no matter what all my Area Series are drawing from x-Axis. What I want is that I can draw let say a area for these four point (2,2), (2,6), (8,6), (8,2).
How can I manage it?

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

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

发布评论

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

评论(1

琉璃梦幻 2024-12-17 11:24:07

要设置 LineSeries 的粗细和虚线样式,请使用如下所示的样式:

<Window.Resources>
    <Style x:Key="DashedPolyLine" TargetType="{x:Type Polyline}">
        <Setter Property="Stroke" Value="Red" />
        <Setter Property="Width" Value="3" />
        <Setter Property="StrokeDashArray" Value="4, 2" />
    </Style>
</Window.Resources>
.
.
.
<charting:LineSeries
    ItemsSource="{Binding MyItems}"
    IndependentValuePath="myIndValue"
    DependentValuePath="myDepValue"
    PolylineStyle="{StaticResource DashedPolyLine}"
</charting:LineSeries>

For setting the thickness and dashed line style of a LineSeries, use a Style like the one shown here:

<Window.Resources>
    <Style x:Key="DashedPolyLine" TargetType="{x:Type Polyline}">
        <Setter Property="Stroke" Value="Red" />
        <Setter Property="Width" Value="3" />
        <Setter Property="StrokeDashArray" Value="4, 2" />
    </Style>
</Window.Resources>
.
.
.
<charting:LineSeries
    ItemsSource="{Binding MyItems}"
    IndependentValuePath="myIndValue"
    DependentValuePath="myDepValue"
    PolylineStyle="{StaticResource DashedPolyLine}"
</charting:LineSeries>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文