gpt4 book ai didi

c# - OxyPlot - 如何删除轴

转载 作者:太空宇宙 更新时间:2023-11-03 23:14:35 25 4
gpt4 key购买 nike

我想创建一个没有任何轴可见的 Oxyplot View 。

谁能告诉我怎么做?

为避免误解,我从未向绘图模型添加任何轴。

这段代码已经添加了坐标轴。如何避免显示它们?

C#

        plot = new PlotModel();
var ser = new LineSeries();
ser.Points.Add(new DataPoint(1, 1));
plot.Series.Add(ser);

XAML

<oxy:PlotView Background="Transparent" Model="{Binding plot}"</oxy:PlotView>

enter image description here

最佳答案

oxyplot axes documentation 中所述:

If no axes are defined, linear axes will be added to the bottom andleft.

因此,正如@JohnStrit 所说,您必须向绘图模型添加“不可见”轴,如下所示:

plot.Axes.Add(new LinearAxis()
{
Position = AxisPosition.Bottom,
IsAxisVisible = false
});

plot.Axes.Add(new LinearAxis()
{
Position = AxisPosition.Left,
IsAxisVisible = false
});

我已经检查过这种方式并且有效。

关于c# - OxyPlot - 如何删除轴,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37683644/

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