Search in sources :

Example 1 with SeriesIndexRecord

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;
}
Also used : SeriesIndexRecord(org.apache.poi.hssf.record.chart.SeriesIndexRecord)

Aggregations

SeriesIndexRecord (org.apache.poi.hssf.record.chart.SeriesIndexRecord)1