我想选择表格中的数据,如下:http: //zapodaj.net/e8bd4193a1811.png.html
日期列(B 列)和月度发票列(不包括增值税)(M 列)
如何?
chart = sl.CreateChart("B3", "M15");
chart.SetChartType(SLLineChartType.Line);
chart.SetChartPosition(19, 1, 15 + fChartHeight, 1 + fChartWidth);
gdloptions = chart.CreateGroupDataLabelOptions();
gdloptions.ShowValue = true;
chart.SetGroupDataLabelOptions(11, gdloptions);
sl.InsertChart(chart);`
但它不起作用。