Package org.apache.poi.hssf.usermodel
Class HSSFChart.HSSFSeries
- java.lang.Object
-
- org.apache.poi.hssf.usermodel.HSSFChart.HSSFSeries
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description CellRangeAddressBase
getCategoryLabelsCellRange()
LinkedDataRecord
getDataCategoryLabels()
LinkedDataRecord
getDataName()
LinkedDataRecord
getDataSecondaryCategoryLabels()
LinkedDataRecord
getDataValues()
short
getNumValues()
SeriesRecord
getSeries()
String
getSeriesTitle()
Returns the series' title, if there is one, or null if notCellRangeAddressBase
getValuesCellRange()
short
getValueType()
SeeSeriesRecord
void
setCategoryLabelsCellRange(CellRangeAddressBase range)
void
setSeriesTitle(String title)
Changes the series' title, but only if there was one already.void
setValuesCellRange(CellRangeAddressBase range)
-
-
-
Method Detail
-
getNumValues
public short getNumValues()
-
getValueType
public short getValueType()
SeeSeriesRecord
-
getSeriesTitle
public String getSeriesTitle()
Returns the series' title, if there is one, or null if not
-
setSeriesTitle
public void setSeriesTitle(String title)
Changes the series' title, but only if there was one already. TODO - add in the records if not
-
getDataName
public LinkedDataRecord getDataName()
- Returns:
- record with data names
-
getDataValues
public LinkedDataRecord getDataValues()
- Returns:
- record with data values
-
getDataCategoryLabels
public LinkedDataRecord getDataCategoryLabels()
- Returns:
- record with data category labels
-
getDataSecondaryCategoryLabels
public LinkedDataRecord getDataSecondaryCategoryLabels()
- Returns:
- record with data secondary category labels
-
getSeries
public SeriesRecord getSeries()
- Returns:
- record with series
-
getValuesCellRange
public CellRangeAddressBase getValuesCellRange()
-
getCategoryLabelsCellRange
public CellRangeAddressBase getCategoryLabelsCellRange()
-
setValuesCellRange
public void setValuesCellRange(CellRangeAddressBase range)
-
setCategoryLabelsCellRange
public void setCategoryLabelsCellRange(CellRangeAddressBase range)
-
-