如何更改OxyPlot Y-Axis字符串格式?

时间:2014-07-23 18:40:19

标签: c# wpf oxyplot

谁能告诉我如何更改Y轴字符串格式?

我有Y轴百分比,我想将百分号添加到。

我正在使用OxyPlot在wpf中生成图表。

这是我的尝试,但它不起作用:

Func<double, string> formatFunc = (x) => string.Format("{000.00}%", x);

        formatFunc = new Func<double,string>("{0}");
        // Add the plot to the window
        line.YAxis.LabelFormatter = formatFunc;

这会产生空引用错误。

谢谢!

2 个答案:

答案 0 :(得分:5)

这是我之前用于在氧图上格式化x轴的示例:

var xAxis = new DateTimeAxis
{
    Position = AxisPosition.Bottom,
    StringFormat = "dd/MM/yyyy",
    Title = "End of Day",
    IntervalLength = 75,
    MinorIntervalType = DateTimeIntervalType.Days,
    IntervalType = DateTimeIntervalType.Days,
    MajorGridlineStyle = LineStyle.Solid,
    MinorGridlineStyle = LineStyle.None,
};

Plot = new PlotModel();
Plot.Axes.Add(xAxis);

答案 1 :(得分:0)

        this._PlotModel.Axes.Add( new LinearAxis
        {
            Position = AxisPosition.Left,
            Minimum = 0.025,
            Maximum = 0.205,
            StringFormat = "0.00%",
            MajorStep = 0.005
        } );

- 按比例添加百分比:20.5% - > 0.205,0.5% - > 0.005等。