@Beta public class XDDFArea3DChartData extends XDDFChartData
| Modifier and Type | Class and Description |
|---|---|
class |
XDDFArea3DChartData.Series |
parent, series| Modifier | Constructor and Description |
|---|---|
protected |
XDDFArea3DChartData(XDDFChart parent,
org.openxmlformats.schemas.drawingml.x2006.chart.CTArea3DChart chart,
Map<Long,XDDFChartAxis> categories,
Map<Long,XDDFValueAxis> values) |
| Modifier and Type | Method and Description |
|---|---|
XDDFChartData.Series |
addSeries(XDDFDataSource<?> category,
XDDFNumericalDataSource<? extends Number> values) |
Integer |
getGapDepth() |
Grouping |
getGrouping() |
protected void |
removeCTSeries(int n)
This method should be implemented in every class that extends
XDDFChartData. |
void |
setGapDepth(Integer depth) |
void |
setGrouping(Grouping grouping) |
void |
setVaryColors(Boolean varyColors) |
defineAxes, getCategoryAxis, getSeries, getSeriesCount, getValueAxes, removeSeries@Internal protected XDDFArea3DChartData(XDDFChart parent, org.openxmlformats.schemas.drawingml.x2006.chart.CTArea3DChart chart, Map<Long,XDDFChartAxis> categories, Map<Long,XDDFValueAxis> values)
@Internal protected void removeCTSeries(int n)
XDDFChartDataXDDFChartData.
A typical implementation would be
protected void removeCTSeries(int n) {
chart.removeSer(n);
}
removeCTSeries in class XDDFChartDatapublic void setVaryColors(Boolean varyColors)
setVaryColors in class XDDFChartDatapublic Grouping getGrouping()
public void setGrouping(Grouping grouping)
public Integer getGapDepth()
public void setGapDepth(Integer depth)
public XDDFChartData.Series addSeries(XDDFDataSource<?> category, XDDFNumericalDataSource<? extends Number> values)
addSeries in class XDDFChartData