Good morning,
I'm trying to add a chart in a worksheet different from the first one.
Code example:
var sheet = workbook.Worksheets [2];
IChartShape chart = sheet.Charts.Add ();
IChartSeries series = chart.Series.Add (chartType);
The graph, however, is added (after having saved the workbook) in the first sheet. How can I add it in a different sheet from the first one?