Package com.storedobject.chart
Class DataMatrix
java.lang.Object
com.storedobject.chart.DataMatrix
Represents a matrix of data.
Data
can be added as rows to the matrix. This class provides methods to
access rows and columns of the matrix as DataProvider
s.
-- Fruit Production in Million Tons -- Fruits | Apple | Orange | Grapes | Years 2011 | 23.4 | 34.5 | 56.7 | 2012 | 25.2 | 36.2 | 60.1 | 2013 | 20.9 | 39.5 | 59.7 | 2014 | 23.7 | 40.1 | 66.7 | setName("Fruit Production in Million Tons"); setColumnName("Fruits"); setColumnNames("Apple", "Orange", "Grapes"); setRowName("Years"); setRowNames("2011", "2012", "2013", "2014"); addRow(23.4, 34.5, 56.7); addRow(25.2, 36.2, 60.1); addRow(20.9, 39.5, 59.7); addRow(23.7, 40.1, 66.7);
- Author:
- Syam
-
Constructor Summary
ConstructorsConstructorDescriptionDataMatrix
(Data... data) Constructor.DataMatrix
(String name, Data... data) Constructor. -
Method Summary
Modifier and TypeMethodDescriptionvoid
addRow
(double[] data) Add a row of data.void
Add rows of data.void
Add a row of data.getColumn
(int column) Get a specific column as data provider.getColumn
(int column, int limit) Get a specific column as data provider.int
Get the column count.Get the name of the column data.getColumnName
(int columnIndex) Get the name of a particular column.Get column names as a category data provider.getColumnNames
(int limit) Get column names as a category data provider.getName()
Get name of the data set.getRow
(int row) Get a specific row as data provider.getRow
(int row, int limit) Get a specific row as data provider.int
Get the row count.Get the name of the row data.getRowName
(int rowIndex) Get the name of a particular row.Get row names as a category data provider.getRowNames
(int limit) Get row names as a category data provider.void
insertRow
(int index, double[] data) Add rows of data at a given index.void
Add rows of data at a given index.void
Add rows of data at a given index.void
removeRow
(int rowIndex) Remove data at the given index.void
Remove data rows.void
setColumnDataName
(String columnName) Set the name of the column data.void
setColumnNames
(CategoryData columnNames) Set column names.void
setColumnNames
(String... columnNames) Set column names.void
Set name of the data set.void
setRowDataName
(String rowName) Set the name of the row data.void
setRowNames
(CategoryData rowNames) Set row names.void
setRowNames
(String... rowNames) Set row names.
-
Constructor Details
-
DataMatrix
-
DataMatrix
-
-
Method Details
-
addRow
-
addRow
-
addRow
public void addRow(double[] data) Add a row of data.- Parameters:
data
- Data to add.
-
insertRow
Add rows of data at a given index.- Parameters:
index
- Index.data
- Data to add.
-
insertRow
Add rows of data at a given index.- Parameters:
index
- Index.data
- Data to add.
-
insertRow
public void insertRow(int index, double[] data) Add rows of data at a given index.- Parameters:
index
- Index.data
- Data to add.
-
removeRow
-
removeRow
public void removeRow(int rowIndex) Remove data at the given index.- Parameters:
rowIndex
- Row index.
-
getRowCount
public int getRowCount()Get the row count.- Returns:
- Row count.
-
getColumnCount
public int getColumnCount()Get the column count.- Returns:
- Column count.
-
setColumnNames
Set column names.- Parameters:
columnNames
- Column names.
-
setColumnNames
Set column names.- Parameters:
columnNames
- Column names.
-
setRowNames
-
setRowNames
-
getColumnNames
Get column names as a category data provider.- Returns:
- Column names as category data provider.
-
getColumnNames
Get column names as a category data provider.- Parameters:
limit
- Limit the number of entries returned.- Returns:
- Column names as category data provider.
-
getRowNames
Get row names as a category data provider.- Returns:
- Row names as category data provider.
-
getRowNames
Get row names as a category data provider.- Parameters:
limit
- Limit the number of entries returned.- Returns:
- Row names as category data provider.
-
getRow
Get a specific row as data provider.- Parameters:
row
- Row index.- Returns:
- Row as data provider.
-
getRow
Get a specific row as data provider.- Parameters:
row
- Row index.limit
- Limit the number of entries returned.- Returns:
- Row as data provider.
-
getColumn
Get a specific column as data provider.- Parameters:
column
- Column index.- Returns:
- Column as data provider.
-
getColumn
Get a specific column as data provider.- Parameters:
column
- Column index.limit
- Limit the number of entries returned.- Returns:
- Column as data provider.
-
getRowName
Get the name of a particular row.- Parameters:
rowIndex
- Row index.- Returns:
- Name.
-
getColumnName
Get the name of a particular column.- Parameters:
columnIndex
- Column index.- Returns:
- Name.
-
getColumnDataName
Get the name of the column data.- Returns:
- Name of the column data.
-
setColumnDataName
Set the name of the column data.- Parameters:
columnName
- Name of the column data.
-
getRowDataName
-
setRowDataName
Set the name of the row data.- Parameters:
rowName
- Name of the row data.
-
getName
-
setName
-