我正在使用 OxyPlot 并试图只显示情节。我找到了一种使轴号、轴和背景透明的方法。但我似乎无法找到使轴破折号透明的方法:
这是我使用的代码:
<oxy:Plot Grid.Row="1" Background="Transparent" TextColor="Transparent" PlotAreaBorderColor="Transparent">
<oxy:LineSeries ItemsSource="{Binding CoilData, RelativeSource={RelativeSource FindAncestor, AncestorType=Window}}" DataFieldX="Key" DataFieldY="Value"/>
</oxy:Plot>
有没有办法做到这一点?