org.apache.poi.xssf.usermodel.charts
Class XSSFScatterChartData

java.lang.Object
  extended by org.apache.poi.xssf.usermodel.charts.XSSFScatterChartData
All Implemented Interfaces:
ChartData, ScatterChartData

public class XSSFScatterChartData
extends java.lang.Object
implements ScatterChartData

Represents DrawingML scatter chart.

Author:
Roman Kashitsyn

Constructor Summary
XSSFScatterChartData()
           
 
Method Summary
 ScatterChartSerie addSerie(DataMarker xMarker, DataMarker yMarker)
           
 void fillChart(Chart chart, ChartAxis... axis)
          Fills a chart with data specified by implementation.
 java.util.List<? extends org.apache.poi.xssf.usermodel.charts.XSSFScatterChartData.Serie> getSeries()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

XSSFScatterChartData

public XSSFScatterChartData()
Method Detail

addSerie

public ScatterChartSerie addSerie(DataMarker xMarker,
                                  DataMarker yMarker)
Specified by:
addSerie in interface ScatterChartData
Parameters:
xMarker - data marker to be used for X value range
yMarker - data marker to be used for Y value range
Returns:
a new scatter chart serie

fillChart

public void fillChart(Chart chart,
                      ChartAxis... axis)
Description copied from interface: ChartData
Fills a chart with data specified by implementation.

Specified by:
fillChart in interface ChartData
Parameters:
chart - a chart to fill in
axis - chart axis to use

getSeries

public java.util.List<? extends org.apache.poi.xssf.usermodel.charts.XSSFScatterChartData.Serie> getSeries()
Specified by:
getSeries in interface ScatterChartData
Returns:
list of all series


Copyright 2011 The Apache Software Foundation or its licensors, as applicable.