use of org.apache.poi.hssf.record.chart.SheetPropertiesRecord in project poi by apache.
the class HSSFChart method createSheetPropsRecord.
private SheetPropertiesRecord createSheetPropsRecord() {
SheetPropertiesRecord r = new SheetPropertiesRecord();
r.setChartTypeManuallyFormatted(false);
r.setPlotVisibleOnly(true);
r.setDoNotSizeWithWindow(false);
r.setDefaultPlotDimensions(true);
r.setAutoPlotArea(false);
return r;
}
Aggregations