use of org.apache.poi.hssf.record.chart.SeriesIndexRecord in project poi by apache.
the class HSSFChart method createSeriesIndexRecord.
private SeriesIndexRecord createSeriesIndexRecord(int index) {
SeriesIndexRecord r = new SeriesIndexRecord();
r.setIndex((short) index);
return r;
}
Aggregations