当前位置: 代码迷 >> .NET面试 >> 用.net在Excel中插入图表的时候,如何指定位置,目前都是在同一个位置
  详细解决方案

用.net在Excel中插入图表的时候,如何指定位置,目前都是在同一个位置

热度:248   发布时间:2016-05-04 23:14:49.0
用.net在Excel中插入图表的时候,怎么指定位置,目前都是在同一个位置
C# code
 public void InsertActiveChart(Excel.XlChartType ChartType, string ws, int DataSourcesX1, int DataSourcesY1, int DataSourcesX2, int DataSourcesY2, Excel.XlRowCol ChartDataType)//插入图表操作               {            ChartDataType = Excel.XlRowCol.xlColumns;            wb.Charts.Add(Type.Missing, Type.Missing, Type.Missing, Type.Missing);            {                string StartColumn = GetColumnName(DataSourcesX1);                string EndColumn = GetColumnName(DataSourcesX2);                wb.ActiveChart.ChartType = ChartType;                wb.ActiveChart.SetSourceData(GetSheet(ws).get_Range(StartColumn + DataSourcesY1.ToString(), EndColumn + DataSourcesY2.ToString()));                wb.ActiveChart.Location(Excel.XlChartLocation.xlLocationAsObject, ws);                           }        }//插入图表excel.InsertActiveChart(Excel.XlChartType.xlLine, "Sheet1", 1, 1, 15, 3, Excel.XlRowCol.xlColumns);excel.InsertActiveChart(Excel.XlChartType.xlLine, "Sheet1", 1, 20, 15, 23, Excel.XlRowCol.xlColumns);


这2个图标都重叠了


------解决方案--------------------
探讨

没有人来,我就转到灌水区了
问题解决了
用left,top
  相关解决方案