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.SeriesinsteadBase 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 CellReferencegetTitleCellReference()Deprecated.java.lang.StringgetTitleString()Deprecated.TitleTypegetTitleType()Deprecated.voidsetTitle(java.lang.String title)Deprecated.Sets the title of the series as a string literal.voidsetTitle(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:ChartSeriesSets the title of the series as a cell reference.- Specified by:
setTitlein interfaceChartSeries
-
setTitle
public void setTitle(java.lang.String title)
Deprecated.Description copied from interface:ChartSeriesSets the title of the series as a string literal.- Specified by:
setTitlein interfaceChartSeries
-
getTitleCellReference
public CellReference getTitleCellReference()
Deprecated.- Specified by:
getTitleCellReferencein interfaceChartSeries- Returns:
- title as cell reference.
-
getTitleString
public java.lang.String getTitleString()
Deprecated.- Specified by:
getTitleStringin interfaceChartSeries- Returns:
- title as string literal.
-
getTitleType
public TitleType getTitleType()
Deprecated.- Specified by:
getTitleTypein interfaceChartSeries- Returns:
- title type.
-
-