Interface ChartSeries
-
- All Known Subinterfaces:
LineChartSeries
,ScatterChartSeries
- All Known Implementing Classes:
AbstractXSSFChartSeries
@Deprecated @Removal(version="4.2") public interface ChartSeries
Deprecated.Basic settings for all chart series.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description CellReference
getTitleCellReference()
Deprecated.java.lang.String
getTitleString()
Deprecated.TitleType
getTitleType()
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
void setTitle(java.lang.String title)
Deprecated.Sets the title of the series as a string literal.- Parameters:
title
-
-
setTitle
void setTitle(CellReference titleReference)
Deprecated.Sets the title of the series as a cell reference.- Parameters:
titleReference
-
-
getTitleString
java.lang.String getTitleString()
Deprecated.- Returns:
- title as string literal.
-
getTitleCellReference
CellReference getTitleCellReference()
Deprecated.- Returns:
- title as cell reference.
-
getTitleType
TitleType getTitleType()
Deprecated.- Returns:
- title type.
-
-