Hello:
I need help for change presentation, i don't know change chart8.Series.SeriesLabel = chart8.ChartData["B1", "D1", "F1", "H1", "J1", "L1"];
amy.zhao wrote:Hi,
Thanks for your posting.
Sorry that at present there is no solution to set chartData likes chart8.ChartData["B1", "D1", "F1", "H1", "J1", "L1"], but I checked you attached pptx file and its SeriesLabel was using ChartData["B1", "D1", "F1", "H1", "J1", "L1"].
I have forwarded your requirement to our dev team. We will inform you when there is any update on it.
Best Regards,
Amy
E-iceblue support team
CellRanges crs = chart8.ChartData["B1", "B1"];
crs.Add(chart8.ChartData["D1"]);
crs.Add(chart8.ChartData["F1"]);
crs.Add(chart8.ChartData["H1"]);
crs.Add(chart8.ChartData["J1"]);
crs.Add(chart8.ChartData["L1"]);
chart8.Series.SeriesLabel = crs;
1. - In sheet 1 does not retain colors or show DataPoints values.
2. - In the blade 2 appears an error and does not show
3. - In the sheet 3 an error and does not show
chart.ChartData[fila, 0].Value = Convert.ToDouble(dr[c_CMP_COLUMNA2]).ToString("#,##0");
chart.ChartData[fila, columna].Value = Convert.ToDouble(dr[c_CMP_COLUMNA3]).ToString("#,##0.0");
chart.ChartData[fila, columna + 1].Value = Convert.ToDouble(dr[c_CMP_COLUMNA4]).ToString("#,##0.0");
chart.ChartData[fila, 0].Value = Convert.ToDouble(dr[c_CMP_COLUMNA2]);
chart.ChartData[fila, columna].Value = Convert.ToDouble(dr[c_CMP_COLUMNA3]);
chart.ChartData[fila, columna + 1].Value = Convert.ToDouble(dr[c_CMP_COLUMNA4]);
chart.ChartData.Clear(dt.Rows.Count, 0, chart.Series.Count - 1, (dt.Rows.Count * 2));
chart.ChartData.Clear(dt.Rows.Count + 1, 0, chart.Series.Count + 1, (chart.Series.Count * 2));