如何在Oxyplot中增加Axis的绘图区域?

时间:2014-07-08 17:41:20

标签: c# oxyplot

我正在编写一个实用程序来通过电子邮件发送堆积的柱形图,该图表显示每个人的任务。现在我在PngExporter中使用OxyPlot.WindowsForms导出图,但我似乎无法弄清楚如何控制图像的下限。用户名可能很长并且会溢出到外面,我想扩展底部轴的绘图区域,以便所有名称都可见。

这就是现在的样子

plot

这是我目前所拥有的代码

        var plot = new PlotModel()
        {
            Title = "Mantis Report"
        };

        // CATEGORY AXIS CODE====================================
        var categoryaxis = new CategoryAxis();
        foreach (var e in employees)
            categoryaxis.ActualLabels.Add(paddedString("Jebediah Kerman"));
        categoryaxis.Angle = 30;

        categoryaxis.AxisTickToLabelDistance = 10;
        // CATEGORY AXIS CODE====================================

        plot.Axes.Add(categoryaxis);
        plot.Axes.Add(new LinearAxis());

        var series = new ColumnSeries();
        series.IsStacked = true;

        int employeeindex = 0;
        foreach (var employee in employees)
        {
            foreach (var entry in employee.Tasks)
            {
                series.Items.Add(new ColumnItem(entry.Value, employeeindex) { Color = colors[entry.Key] });
            }
            employeeindex++;
        }

        plot.Series.Add(series);

        plot.LegendTitle = "legend";
        plot.LegendPlacement = LegendPlacement.Outside;
        foreach (string task in tasktypes)
        {
            var newseries = new ColumnSeries()
            {
                FillColor = colors[task]
                , Title = task
            };
            plot.Series.Add(newseries);
        }

paddedString()在空格中预先给定字符串的长度并返回它。这是我目前处理"翻译"标签,但现在我担心抽出其余的名字。

我查看了CategoryAxis页面,但我似乎无法找到扩展轴区域的方法,以便完全显示名称。不,我宁愿不缩短用户名。

1 个答案:

答案 0 :(得分:1)

这在WPF应用程序中对我有用。

var currentMargins = plotModel.PlotMargins;
plotModel.PlotMargins = new OxyThickness(currentMargins.Left, currentMargins.Top, currentMargins.Right, 100);