Encapsulates the visual aspects of a table; number of rows and columns
and the height and width in pixels of each element within the table.
There is no support (yet) for variable size cells within a table; all
cells within a table share the same dimensions.
The DynamicTableModel provides an Iterator implementation which returns a RectF
of each subsequent cell, based on the order of the plot. Tables with
an order of COLUMN_MAJOR are traversed left to right column by column until
the end of the row is reached, then proceeding to the next row.
Tables with an order of ROW_MAJOR are traversed top to bottom row by row
until the end of the row is reached, then proceeding to the next column.
Nested Class Summary
Nested classes/interfaces inherited from class com.androidplot.ui.TableModel
getCellRect(android.graphics.RectF tableRect,
int numElements)
Calculates the dimensions of a single element of this table with
tableRect representing the overall dimensions of the table.