Search in sources :

Example 1 with AxisRecord

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

the class HSSFChart method createAxisRecord.

private AxisRecord createAxisRecord(short axisType) {
    AxisRecord r = new AxisRecord();
    r.setAxisType(axisType);
    return r;
}
Also used : CategorySeriesAxisRecord(org.apache.poi.hssf.record.chart.CategorySeriesAxisRecord) AxisRecord(org.apache.poi.hssf.record.chart.AxisRecord)

Aggregations

AxisRecord (org.apache.poi.hssf.record.chart.AxisRecord)1 CategorySeriesAxisRecord (org.apache.poi.hssf.record.chart.CategorySeriesAxisRecord)1