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 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 CellReference
getTitleCellReference()
Deprecated.String
getTitleString()
Deprecated.TitleType
getTitleType()
Deprecated.void
setTitle(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(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 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.
-
-