Hi everyone,
I’m working with aspose_cells version 7.3.4.4.
and i’m trying to create excel file with xls format.
I’m trying to set the datalabel of a a chart using this :
charts.add(ChartType.COLUMN_3_D_STACKED,5,0,20,10);
chart = charts.get(chartIndex);
serieses = chart.getNSeries();
serieses.add(“A1:B3”, true);
for (int i = 0; i < chart.getNSeries().getCount(); i++){
datalabels = chart.getNSeries().get(i).getDataLabels();
datalabels.setShowValue(true);
datalabels.setText(cells1.get(0,i).getStringValue());
}
But the label is never changed.
Am i doing anything wrong ?
Is this possible to do so with the version of aspose_cells and excel ?
Thanks for your help.
Benoit