Search in sources :

Example 1 with AxisParentRecord

use of org.apache.poi.hssf.record.chart.AxisParentRecord in project poi by apache.

the class HSSFChart method createAxisParentRecord.

private AxisParentRecord createAxisParentRecord() {
    AxisParentRecord r = new AxisParentRecord();
    r.setAxisType(AxisParentRecord.AXIS_TYPE_MAIN);
    r.setX(479);
    r.setY(221);
    r.setWidth(2995);
    r.setHeight(2902);
    return r;
}
Also used : AxisParentRecord(org.apache.poi.hssf.record.chart.AxisParentRecord)

Aggregations

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