Class AbstractXSSFChartSeries
- java.lang.Object
-
- org.apache.poi.xssf.usermodel.charts.AbstractXSSFChartSeries
-
- All Implemented Interfaces:
ChartSeries
@Deprecated @Removal(version="4.2") public abstract class AbstractXSSFChartSeries extends java.lang.Object implements ChartSeries
Deprecated.useXDDFChartData.Series
insteadBase of all XSSF Chart Series
-
-
Constructor Summary
Constructors Constructor Description AbstractXSSFChartSeries()
Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description protected org.openxmlformats.schemas.drawingml.x2006.chart.CTSerTx
getCTSerTx()
Deprecated.CellReference
getTitleCellReference()
Deprecated.java.lang.String
getTitleString()
Deprecated.TitleType
getTitleType()
Deprecated.protected boolean
isTitleSet()
Deprecated.void
setTitle(java.lang.String title)
Deprecated.Sets the title of the series as a string literal.void
setTitle(CellReference titleReference)
Deprecated.Sets the title of the series as a cell reference.
-
-
-
Method Detail
-
setTitle
public void setTitle(CellReference titleReference)
Deprecated.Description copied from interface:ChartSeries
Sets the title of the series as a cell reference.- Specified by:
setTitle
in interfaceChartSeries
-
setTitle
public void setTitle(java.lang.String title)
Deprecated.Description copied from interface:ChartSeries
Sets the title of the series as a string literal.- Specified by:
setTitle
in interfaceChartSeries
-
getTitleCellReference
public CellReference getTitleCellReference()
Deprecated.- Specified by:
getTitleCellReference
in interfaceChartSeries
- Returns:
- title as cell reference.
-
getTitleString
public java.lang.String getTitleString()
Deprecated.- Specified by:
getTitleString
in interfaceChartSeries
- Returns:
- title as string literal.
-
getTitleType
public TitleType getTitleType()
Deprecated.- Specified by:
getTitleType
in interfaceChartSeries
- Returns:
- title type.
-
isTitleSet
protected boolean isTitleSet()
Deprecated.
-
getCTSerTx
protected org.openxmlformats.schemas.drawingml.x2006.chart.CTSerTx getCTSerTx()
Deprecated.
-
-