use of org.apache.poi.hssf.record.chart.AxisLineFormatRecord in project poi by apache.
the class HSSFChart method createAxisLineFormatRecord.
private AxisLineFormatRecord createAxisLineFormatRecord(short format) {
AxisLineFormatRecord r = new AxisLineFormatRecord();
r.setAxisType(format);
return r;
}
Aggregations