Hi, first sorry about my english. I'm trying to change the range cells of one charts with poi 3.7 final, but I can´t. Is it possible?
I did this: HSSFSeries serie= chart[0].getSeries()[0]; CellRangeAddressBase crab= serie.getValuesCellRange(); crab.setFirstColumn(5); crab.setLastColumn(5); crab.setFirstRow(3); crab.setLastRow(3); serie.setValuesCellRange(crab); but doesn't work. If I do simply serie.setValuesCellRange(serie.getValuesCellRange()) also doesn't work, the excel file final is corrupt. Thanks and Best regards!
