gpt4 book ai didi

Oxyplot 分区颜色变化

转载 作者:行者123 更新时间:2023-12-02 07:24:31 28 4
gpt4 key购买 nike

有谁知道如何更改氧绘图上分割标记的颜色?我似乎无法在任何地方找到该特定属性。这是我用来生成下图的代码。如您所见,分割标记是黑色的。真想换个颜色。谢谢。

 <oxy:Plot PlotAreaBorderColor="White"  Background="#242426" TextColor="White" Margin="5" Title="X and Y FPOS" TitleFontSize="12" Grid.Row="0" Grid.ColumnSpan="2">
<oxy:LineSeries ItemsSource="{Binding XYData}"/>
</oxy:Plot>

enter image description here

最佳答案

您要查找的属性是 TicklineColor。你必须在两个轴上都这样做:

效果:

Effect acquired

代码:

<oxy:Plot>
...
<oxy:Plot.Axes>
<oxy:LinearAxis Position="Left" TicklineColor="White" />
<oxy:LinearAxis Position="Bottom" TicklineColor="White" />
<oxy:Plot.Axes>
</oxy:Plot>

关于Oxyplot 分区颜色变化,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34821465/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com