情节内的轴

时间:2016-07-06 12:30:28

标签: oxyplot

如何更改轴的位置以使它们位于图中?

我有这个:enter image description here

我想要这个:enter image description here

这可能吗?

1 个答案:

答案 0 :(得分:2)

您可以使用轴定义上的AxisTickToLabelDistance属性来实现此目的,如下所示:

plotModel.Axes.Add(new LinearAxis()
{
    Position = AxisPosition.Bottom,
    AxisTickToLabelDistance = -25,
    TickStyle = TickStyle.Crossing,
});