All Packages  Class Hierarchy  This Package  Previous  Next  Index

Interface tdg.data.in.TDGDataGrid

public interface TDGDataGrid
Interface TDGDataGrid represents an abstract data model that is one way of preparing data for graphing by Perspective javaCHART.


Method Index

 o columnLabel(int)
Establish the column labels (headings).
 o getColumns()
Return the number of columns.
 o getFootnote()
Establish the chart Footnote.
 o getO1AxisTitle()
Establish the chart Axis O1 Title.
 o getO2AxisTitle()
Establish the chart Axis O2 Title.
 o getRows()
Return the number of rows.
 o getSubtitle()
Establish the chart SubTitle.
 o getTitle()
Establish the chart Title.
 o getValue(int, int)
Get the contents of the specified cell.
 o getX1AxisTitle()
Establish the chart Axis X1 Title.
 o getY1AxisTitle()
Establish the chart Axis Y1 Title.
 o getY2AxisTitle()
Establish the chart Axis Y2 Title.
 o isDirty()
Indicate if data has changed.
 o rowLabel(int)
Establish the row labels (e.g., line numbers).

Methods

 o getTitle
 public abstract String getTitle()
Establish the chart Title.

 o getSubtitle
 public abstract String getSubtitle()
Establish the chart SubTitle.

 o getFootnote
 public abstract String getFootnote()
Establish the chart Footnote.

 o getX1AxisTitle
 public abstract String getX1AxisTitle()
Establish the chart Axis X1 Title.

 o getY1AxisTitle
 public abstract String getY1AxisTitle()
Establish the chart Axis Y1 Title.

 o getO1AxisTitle
 public abstract String getO1AxisTitle()
Establish the chart Axis O1 Title.

 o getO2AxisTitle
 public abstract String getO2AxisTitle()
Establish the chart Axis O2 Title.

 o getY2AxisTitle
 public abstract String getY2AxisTitle()
Establish the chart Axis Y2 Title.

 o columnLabel
 public abstract String columnLabel(int c)
Establish the column labels (headings).

 o getColumns
 public abstract int getColumns()
Return the number of columns.

 o rowLabel
 public abstract String rowLabel(int r)
Establish the row labels (e.g., line numbers).

 o getRows
 public abstract int getRows()
Return the number of rows.

 o getValue
 public abstract Object getValue(int r,
                                 int c)
Get the contents of the specified cell. Note that any type of Object can be returned. Perspective will interpret the Object type as a String or Double.

 o isDirty
 public abstract boolean isDirty()
Indicate if data has changed.


All Packages  Class Hierarchy  This Package  Previous  Next  Index