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 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
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.
-
-