Class XDDFBar3DChartData
- java.lang.Object
-
- org.apache.poi.xddf.usermodel.chart.XDDFChartData
-
- org.apache.poi.xddf.usermodel.chart.XDDFBar3DChartData
-
@Beta public class XDDFBar3DChartData extends XDDFChartData
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description classXDDFBar3DChartData.Series
-
Field Summary
-
Fields inherited from class org.apache.poi.xddf.usermodel.chart.XDDFChartData
parent, series
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedXDDFBar3DChartData(XDDFChart parent, org.openxmlformats.schemas.drawingml.x2006.chart.CTBar3DChart chart, Map<Long,XDDFChartAxis> categories, Map<Long,XDDFValueAxis> values)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description XDDFChartData.SeriesaddSeries(XDDFDataSource<?> category, XDDFNumericalDataSource<? extends Number> values)BarDirectiongetBarDirection()BarGroupinggetBarGrouping()IntegergetGapDepth()IntegergetGapWidth()ShapegetShape()protected voidremoveCTSeries(int n)This method should be implemented in every class that extendsXDDFChartData.voidsetBarDirection(BarDirection direction)voidsetBarGrouping(BarGrouping grouping)voidsetGapDepth(Integer depth)voidsetGapWidth(Integer width)voidsetShape(Shape shape)voidsetVaryColors(Boolean varyColors)-
Methods inherited from class org.apache.poi.xddf.usermodel.chart.XDDFChartData
defineAxes, getCategoryAxis, getSeries, getSeries, getSeriesCount, getValueAxes, removeSeries
-
-
-
-
Constructor Detail
-
XDDFBar3DChartData
@Internal protected XDDFBar3DChartData(XDDFChart parent, org.openxmlformats.schemas.drawingml.x2006.chart.CTBar3DChart chart, Map<Long,XDDFChartAxis> categories, Map<Long,XDDFValueAxis> values)
-
-
Method Detail
-
removeCTSeries
@Internal protected void removeCTSeries(int n)
Description copied from class:XDDFChartDataThis method should be implemented in every class that extendsXDDFChartData.A typical implementation would be
protected void removeCTSeries(int n) { chart.removeSer(n); }- Specified by:
removeCTSeriesin classXDDFChartData
-
setVaryColors
public void setVaryColors(Boolean varyColors)
- Specified by:
setVaryColorsin classXDDFChartData
-
getBarDirection
public BarDirection getBarDirection()
-
setBarDirection
public void setBarDirection(BarDirection direction)
-
getBarGrouping
public BarGrouping getBarGrouping()
-
setBarGrouping
public void setBarGrouping(BarGrouping grouping)
-
getGapDepth
public Integer getGapDepth()
-
setGapDepth
public void setGapDepth(Integer depth)
-
getGapWidth
public Integer getGapWidth()
-
setGapWidth
public void setGapWidth(Integer width)
-
getShape
public Shape getShape()
-
setShape
public void setShape(Shape shape)
-
addSeries
public XDDFChartData.Series addSeries(XDDFDataSource<?> category, XDDFNumericalDataSource<? extends Number> values)
- Specified by:
addSeriesin classXDDFChartData
-
-