Search in sources :

Example 1 with FontIndexRecord

use of org.apache.poi.hssf.record.chart.FontIndexRecord in project poi by apache.

the class HSSFChart method createFontIndexRecord.

private FontIndexRecord createFontIndexRecord(int index) {
    FontIndexRecord r = new FontIndexRecord();
    r.setFontIndex((short) index);
    return r;
}
Also used : FontIndexRecord(org.apache.poi.hssf.record.chart.FontIndexRecord)

Aggregations

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