Public Member Functions | |
| XYZSeries (String name) | |
| Constructs a new xy-series that contains no data. | |
| int | getItemCount () |
| Returns the number of items in the series. | |
| List | getItems () |
| Returns the list of data items for the series (the list contains XYZDataItem objects and is unmodifiable). | |
| void | add (double x, double y, double z) |
| Adds a data item to the series. | |
| void | add (Number x, Number y, Number z) |
| Adds a data item to the series. | |
| XYZDataItem | getDataItem (int index) |
| Return the data item with the specified index. | |
| Number | getXValue (int index) |
| Returns the x-value at the specified index. | |
| Number | getYValue (int index) |
| Returns the y-value at the specified index. | |
| Number | getZValue (int index) |
| Returns the z-value at the specified index. | |
Protected Attributes | |
| List | data |
| Storage for the data items in the series. | |
Modified from JFreeChart.
Title: Data Visualizer
Description:
Copyright: Copyright (c) Charles D. Canham 2003
Company: Institute of Ecosystem Studies
|
|
Constructs a new xy-series that contains no data.
Edit history: ------------------ April 28, 2004: Submitted in beta version (LEM) |
|
||||||||||||||||
|
Adds a data item to the series.
Edit history: ------------------ June 29, 2004: Created in beta version (LEM) |
|
||||||||||||||||
|
Adds a data item to the series.
Edit history: ------------------ April 28, 2004: Submitted in beta version (LEM) |
|
|
Return the data item with the specified index.
Edit history: ------------------ April 28, 2004: Submitted in beta version (LEM) |
|
|
Returns the number of items in the series.
Edit history: ------------------ April 28, 2004: Submitted in beta version (LEM) |
|
|
Returns the list of data items for the series (the list contains XYZDataItem objects and is unmodifiable).
Edit history: ------------------ April 28, 2004: Submitted in beta version (LEM) |
|
|
Returns the x-value at the specified index.
Edit history: ------------------ April 28, 2004: Submitted in beta version (LEM) |
|
|
Returns the y-value at the specified index.
Edit history: ------------------ April 28, 2004: Submitted in beta version (LEM) |
|
|
Returns the z-value at the specified index.
Edit history: ------------------ April 28, 2004: Submitted in beta version (LEM) |
1.4.6-NO