org.apache.poi.ss.usermodel.charts
Interface ChartSeries

All Known Subinterfaces:
LineChartSeries, ScatterChartSeries

public interface ChartSeries

Basic settings for all chart series.


Method Summary
 CellReference getTitleCellReference()
           
 java.lang.String getTitleString()
           
 TitleType getTitleType()
           
 void setTitle(CellReference titleReference)
          Sets the title of the series as a cell reference.
 void setTitle(java.lang.String title)
          Sets the title of the series as a string literal.
 

Method Detail

setTitle

void setTitle(java.lang.String title)
Sets the title of the series as a string literal.

Parameters:
title -

setTitle

void setTitle(CellReference titleReference)
Sets the title of the series as a cell reference.

Parameters:
titleReference -

getTitleString

java.lang.String getTitleString()
Returns:
title as string literal.

getTitleCellReference

CellReference getTitleCellReference()
Returns:
title as cell reference.

getTitleType

TitleType getTitleType()
Returns:
title type.