<aol:chart type="pie" split-type="bar" split-by="percent" split-pos="5" split-size="60" split-gap="200"/>
或子标签
<aol:chart>
<aol:split type="bar" by="percent"/>
</aol:chart>
/** 图表类型:pie/doughnut/line/bar/column/area/radar/scatter/bubble/surface */
private String type;
/** 图表标题文本 */
private String title;
/** 图表数据源,可以是 Collection/DataSet/ChartData 对象或 JSON/数组字符串 */
private Object data;
/** 数据字段映射 key,默认 category=name / value=value / text=name / size 不设置 */
private Key key = new Key();
/** 图表维度:2D(默认)或 3D(pie→pie3DChart / bar→bar3DChart),surface 默认 3D */
private String dimension;
/** 柱状图 3D 形状,仅 bar3DChart 有效 */
private SHAPE shape;
/** 复合饼图配置,非空时 type=pie 自动转为 ofPieChart */
private ChartSplit split;
/** 曲面图线框模式(仅 2D 曲面有效) */
private boolean wireframe;
/** 圆环图中心孔洞大小(百分比),默认 50 */
private Integer holeSize;
/** 图表宽度(EMU 单位),默认 5274310(约 13.9cm) */
private Integer width;
/** 图表高度(EMU 单位),默认 3076575(约 8.1cm) */
private Integer height;