Oxyplot分区颜色变化

Oxyplot division color change

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

 <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>

我想,在这个时候不可能设置标记的颜色。但是,也许您会选择使用 PlotAreaBackground。

示例:

.xaml:

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

.fs:

type MainViewModel() = 
    inherit ViewModelBase()  

    let data = [0.0..0.1..50.0] |> List.mapi(fun i x -> DataPoint(float i, cos x))
    member self.XYData with get() = data

截图:

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

效果:

代码:

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