Search in sources :

Example 1 with SheetPropertiesRecord

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;
}
Also used : SheetPropertiesRecord(org.apache.poi.hssf.record.chart.SheetPropertiesRecord)

Aggregations

SheetPropertiesRecord (org.apache.poi.hssf.record.chart.SheetPropertiesRecord)1