Hello,
I have been using Spire.XLS for C# for some time and have now gotten to a point where I need to show a textbox on a chartsheet. Inserting one on a normal worksheet works just fine and as expected but I can't seem to get the Textbox to show up on a chartsheet.
Spire.Xls.Workbook wb = new Spire.Xls.Workbook();
wb.Worksheets.Clear();
Spire.Xls.ChartSheet chart = wb.Charts.Add("Test");
chart.ChartType = Spire.Xls.ExcelChartType.ScatterLine;
var tb = chart.TextBoxes.AddTextBox(1,1,500,500);
tb.Text = "testesttesttesttesttesttesttesttesttesttesttesttestt";
Also, using a label with the same setup works and shows on the chartsheet, but none of the other shapes seem to show up. Any idea why this could be ?