use of org.apache.poi.hssf.record.chart.AxisUsedRecord in project poi by apache.
the class HSSFChart method createAxisUsedRecord.
private AxisUsedRecord createAxisUsedRecord(short numAxis) {
AxisUsedRecord r = new AxisUsedRecord();
r.setNumAxis(numAxis);
return r;
}
Aggregations