如何在轴上氧气图上设置间隔

时间:2017-01-03 09:46:49

标签: c# oxyplot

我正在使用Oxyplot使用图像注释绘制图像。我需要设置轴间隔空间,以使图像看起来拉伸。在这里我的意思是设置轴间隔空间

这是正常空间

Normal space

这就是我想要的方式

After set the axis interval space

我是从应用程序中得到的。如何使用Oxyplot实现这一目标?

1 个答案:

答案 0 :(得分:0)

如果要水平拉伸,请使用Width属性:

plotModel.Annotations.Add(new ImageAnnotation
{
    ImageSource = oxyImage,
    Opacity = 0.15,
    OffsetX = new PlotLength(0, PlotLengthUnit.RelativeToPlotArea),
    OffsetY = new PlotLength(0, PlotLengthUnit.RelativeToPlotArea),
    //Height = new PlotLength(0.5, PlotLengthUnit.RelativeToPlotArea),
    Width = new PlotLength(0.5, PlotLengthUnit.RelativeToViewport),
});

如果您注释高度或宽度线,图像将与图表同时缩放。