我正在尝试根据导出到.xls文件的一些数据创建图形。我可以很好地创建图形,但是图形上将有3-7条线。我添加了图例以使其更易于阅读,但图例上没有文字。它只是显示没有标签的行。反正有标记图例键的标签吗?

这是我正在制作的图形的代码:

    var lineChart = ws.Drawings.AddChart(item.TestHeader, eChartType.Line) as ExcelLineChart;
    lineChart.SetSize(800, 400);

    lineChart.Series.Add(Char.ConvertFromUtf32(65 + distanceCount + 1).ToString() + "1:" + Char.ConvertFromUtf32(65 + distanceCount + 1).ToString() + (testCount.ToString()), "A1:A" + (testCount.ToString()));

    lineChart.Title.Text = item.TestHeader;
    lineChart.DataLabel.ShowSeriesName = true;
    lineChart.DataLabel.ShowLegendKey = true;
    lineChart.DataLabel.ShowLeaderLines = true;
    lineChart.XAxis.Title.Text = "Inches from Decoder";
    lineChart.YAxis.Title.Text = "Milliseconds to decode";
    lineChart.YAxis.MaxValue = 1000;


任何帮助总比没有好,谢谢!

最佳答案

您的示例在图例中为我生成了一个名为“系列”的系列名称。但是您可以使用

lineChart.Series[0].Header = "Series 1 Name";

10-04 18:48