@Beta public class XDDFBar3DChartData extends XDDFChartData
| Modifier and Type | Class and Description |
|---|---|
class |
XDDFBar3DChartData.Series |
parent, series| Modifier | Constructor and Description |
|---|---|
protected |
XDDFBar3DChartData(XDDFChart parent,
org.openxmlformats.schemas.drawingml.x2006.chart.CTBar3DChart chart,
Map<Long,XDDFChartAxis> categories,
Map<Long,XDDFValueAxis> values) |
| Modifier and Type | Method and Description |
|---|---|
XDDFChartData.Series |
addSeries(XDDFDataSource<?> category,
XDDFNumericalDataSource<? extends Number> values) |
BarDirection |
getBarDirection() |
BarGrouping |
getBarGrouping() |
Integer |
getGapDepth() |
Integer |
getGapWidth() |
Shape |
getShape() |
protected void |
removeCTSeries(int n)
This method should be implemented in every class that extends
XDDFChartData. |
void |
setBarDirection(BarDirection direction) |
void |
setBarGrouping(BarGrouping grouping) |
void |
setGapDepth(Integer depth) |
void |
setGapWidth(Integer width) |
void |
setShape(Shape shape) |
void |
setVaryColors(Boolean varyColors) |
defineAxes, getCategoryAxis, getSeries, getSeriesCount, getValueAxes, removeSeries@Internal protected XDDFBar3DChartData(XDDFChart parent, org.openxmlformats.schemas.drawingml.x2006.chart.CTBar3DChart 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 BarDirection getBarDirection()
public void setBarDirection(BarDirection direction)
public BarGrouping getBarGrouping()
public void setBarGrouping(BarGrouping grouping)
public Integer getGapDepth()
public void setGapDepth(Integer depth)
public Integer getGapWidth()
public void setGapWidth(Integer width)
public Shape getShape()
public void setShape(Shape shape)
public XDDFChartData.Series addSeries(XDDFDataSource<?> category, XDDFNumericalDataSource<? extends Number> values)
addSeries in class XDDFChartData