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;
}
Aggregations