use of org.apache.poi.hssf.record.chart.PlotGrowthRecord in project poi by apache.
the class HSSFChart method createPlotGrowthRecord.
private PlotGrowthRecord createPlotGrowthRecord(int horizScale, int vertScale) {
PlotGrowthRecord r = new PlotGrowthRecord();
r.setHorizontalScale(horizScale);
r.setVerticalScale(vertScale);
return r;
}
Aggregations