Excel - 绑定系列名称

时间:2014-10-01 13:24:54

标签: c# excel

我在C#中使用excel是全新的,但我需要绑定一个范围或一个单元格值的Serie名称。以下代码对我不起作用。有什么建议 ?

      Excel.Series serie = seriesCollection.NewSeries();
      serie.Name = xlWorkSheet.Range[xlWorkSheet.Cells[1, j], xlWorkSheet.Cells[1, j+1]].Value.ToString();

1 个答案:

答案 0 :(得分:0)

我已经解决了给出像字符串这样的方程式的问题;

    serie.Name="=Tabelle1!$A$1" ;

因此,系列名称会自动绑定。对于迭代计算,我使用了这个表格;

            foreach (GraphFile file in files)
            {
                int count = file.Points.Count;
                Excel.Series serie = seriesCollection.NewSeries();


                //Bind serie name from excel sheet
                serie.Name = "=" + sheet_name + "!$" + (char)char_Value + "$1";
                char_Value += 2;

            }