EPPLUS类别的顺序相反

时间:2018-10-19 12:17:38

标签: charts epplus

我使用以下代码创建了条形图。 但是我需要进行2处修改,但找不到方法。

            var chart = (ExcelBarChart)ws.Drawings.AddChart("barChart", eChartType.BarClustered);
            chart.SetSize(1000, 500);
            chart.SetPosition(10, 225);
            chart.Legend.Position = eLegendPosition.Bottom;
            chart.YAxis.MaxValue = 4;

1)我需要删除圆角边框,我需要直线。 2)我需要更改类别的方向,如下图所示。

Image of the graph is, and how I wish it to be.

如果有人可以帮助我,我会很感激。

1 个答案:

答案 0 :(得分:0)

您非常接近!

您可以使用chart.RoundedCorners = false;去除圆角。

使用chart.XAxis.Orientation = eAxisOrientation.MaxMin;更改类别方向。

使用我自己的数据,您的代码产生了以下内容: enter image description here

添加此代码后

chart.RoundedCorners = false;
chart.XAxis.Orientation = eAxisOrientation.MaxMin;

您得到了: enter image description here