Package | Description |
---|---|
ilog.views.chart.data |
Contains classes related to the Chart data model.
|
ilog.views.chart.datax |
Provides extended data models and bridges from/to Swing models.
|
ilog.views.chart.datax.adapter |
Provides predefined bridges between data models.
|
ilog.views.chart.datax.adapter.partition |
Provides interfaces and algorithms for partitioning of data models.
|
ilog.views.chart.datax.adapter.sort |
Provides interfaces and algorithms for sorting of data models.
|
ilog.views.chart.datax.event |
Provides events sent by all kinds of extended data models.
|
ilog.views.chart.datax.flat.list |
Provides the flat list model interface and its default implementation.
|
ilog.views.chart.datax.flat.list.event |
Provides the events sent out by flat list models.
|
ilog.views.chart.datax.flat.set |
Provides the flat set model interface and its default implementation.
|
ilog.views.chart.datax.flat.set.event |
Provides the events sent out by flat set models.
|
ilog.views.chart.datax.flat.table |
Provides the flat table model interface and its default implementation.
|
ilog.views.chart.datax.flat.table.event |
Provides the events sent out by flat table models.
|
ilog.views.chart.datax.operator |
Provides interfaces and classes for applying operators to the values of a
column in a data model.
|
ilog.views.chart.datax.tree.list |
Provides the tree list model interface and its default implementation.
|
ilog.views.chart.datax.tree.list.event |
Provides the events sent out by tree list models.
|
ilog.views.chart.datax.tree.set |
Provides the tree set model interface and its default implementation.
|
ilog.views.chart.datax.tree.set.event |
Provides the events sent out by tree set models.
|
ilog.views.chart.renderer |
Contains the predefined chart renderer classes.
|
Modifier and Type | Method and Description |
---|---|
boolean |
IlvTreeTableDataSource.isTimeSeries(IlvDataColumnInfo column)
Returns
true if the given column shall be considered to be a
time-series. |
Modifier and Type | Class and Description |
---|---|
class |
IlvAbstractDataColumnInfo
This class is an implementation of the
IlvDataColumnInfo
interface which handles the notification to listeners. |
class |
IlvDefaultDataColumnInfo
This class is the default implementation of the
IlvDataColumnInfo interface. |
Modifier and Type | Method and Description |
---|---|
IlvDataColumnInfo |
IlvModelWithColumns.getColumn(int columnIndex)
Returns metainformation about a column.
|
static IlvDataColumnInfo |
IlvColumnUtilities.getColumnByName(IlvModelWithColumns model,
String name)
Returns metainformation about a column given by name.
|
static IlvDataColumnInfo[] |
IlvColumnUtilities.getColumnsArray(IlvModelWithColumns model)
Returns the list of columns of a model as an array.
|
Modifier and Type | Method and Description |
---|---|
static List<IlvDataColumnInfo> |
IlvColumnUtilities.getColumnsList(IlvModelWithColumns model)
Returns the list of columns of a model as a list.
|
Modifier and Type | Method and Description |
---|---|
static int |
IlvColumnUtilities.getColumnIndex(IlvModelWithColumns model,
IlvDataColumnInfo column)
Returns the index of a column.
|
Modifier and Type | Method and Description |
---|---|
IlvDataColumnInfo |
IlvTreeSetToTreeListModel.getColumn(int columnIndex)
This method is implemented through a call to the underlying model.
|
IlvDataColumnInfo |
IlvTreeListToTreeSetModel.getColumn(int columnIndex)
This method is implemented through a call to the underlying model.
|
IlvDataColumnInfo |
IlvSortedTreeListModel.getColumn(int columnIndex)
This method is implemented through a call to the underlying model.
|
IlvDataColumnInfo |
IlvSortedFlatListModel.getColumn(int columnIndex)
This method is implemented through a call to the underlying model.
|
IlvDataColumnInfo |
IlvFlatSetToTreeSetModel.getColumn(int columnIndex)
Returns metainformation about a column.
|
IlvDataColumnInfo |
IlvFlatSetToFlatListModel.getColumn(int columnIndex)
This method is implemented through a call to the underlying model.
|
IlvDataColumnInfo |
IlvFlatListToTreeListModel.getColumn(int columnIndex)
Returns metainformation about a column.
|
IlvDataColumnInfo |
IlvFlatListToFlatSetModel.getColumn(int columnIndex)
This method is implemented through a call to the underlying model.
|
Modifier and Type | Method and Description |
---|---|
void |
IlvListToFlatTableModel.addColumn(IlvDataColumnInfo column) |
void |
IlvListToFlatTableModel.addColumn(IlvDataColumnInfo column,
double[] data) |
void |
IlvListToFlatTableModel.addColumn(IlvDataColumnInfo column,
Object[] data) |
protected ilog.views.chart.datax.flat.internal.storage.IlvColumnStorage |
IlvTreeToFlatTableModel.createColumnStorage(IlvDataColumnInfo storage) |
protected ilog.views.chart.datax.flat.internal.storage.IlvColumnStorage |
IlvTreeListToFlatTableModel.createColumnStorage(IlvDataColumnInfo storage) |
protected ilog.views.chart.datax.flat.internal.storage.IlvColumnStorage |
IlvTableToFlatTableModel.createColumnStorage(IlvDataColumnInfo column) |
protected ilog.views.chart.datax.flat.internal.storage.IlvColumnStorage |
IlvFlatTableToFlatListModel.createColumnStorage(IlvDataColumnInfo column) |
protected ilog.views.chart.datax.flat.internal.storage.IlvColumnStorage |
IlvFlatSetToFlatTableModel.createColumnStorage(IlvDataColumnInfo column) |
protected ilog.views.chart.datax.flat.internal.storage.IlvColumnStorage |
IlvFlatListToFlatTableModel.createColumnStorage(IlvDataColumnInfo column) |
void |
IlvTreeListToFlatTableModel.insertColumn(int columnIndex,
IlvDataColumnInfo column) |
void |
IlvTreeListToFlatListModel.insertColumn(int columnIndex,
IlvDataColumnInfo column) |
void |
IlvTableToFlatTableModel.insertColumn(int columnIndex,
IlvDataColumnInfo column)
Adds a column to the model at a given index.
|
void |
IlvListToFlatTableModel.insertColumn(int columnIndex,
IlvDataColumnInfo column) |
void |
IlvFlatTableToFlatListModel.insertColumn(int columnIndex,
IlvDataColumnInfo column) |
void |
IlvFlatSetToFlatTableModel.insertColumn(int columnIndex,
IlvDataColumnInfo column) |
void |
IlvFlatListToFlatTableModel.insertColumn(int columnIndex,
IlvDataColumnInfo column) |
void |
IlvDataSourceToFlatTableModel.insertColumn(int columnIndex,
IlvDataColumnInfo column)
This method throws an
UnsupportedOperationException . |
void |
IlvTreeListToFlatTableModel.insertColumn(int columnIndex,
IlvDataColumnInfo column,
double[] data) |
void |
IlvTreeListToFlatListModel.insertColumn(int columnIndex,
IlvDataColumnInfo column,
double[] data) |
void |
IlvTableToFlatTableModel.insertColumn(int columnIndex,
IlvDataColumnInfo column,
double[] data)
Adds a column with given data to the model at a given index.
|
void |
IlvListToFlatTableModel.insertColumn(int columnIndex,
IlvDataColumnInfo column,
double[] data) |
void |
IlvFlatTableToFlatListModel.insertColumn(int columnIndex,
IlvDataColumnInfo column,
double[] data) |
void |
IlvFlatSetToFlatTableModel.insertColumn(int columnIndex,
IlvDataColumnInfo column,
double[] data) |
void |
IlvFlatListToFlatTableModel.insertColumn(int columnIndex,
IlvDataColumnInfo column,
double[] data) |
void |
IlvDataSourceToFlatTableModel.insertColumn(int columnIndex,
IlvDataColumnInfo column,
double[] data)
This method throws an
UnsupportedOperationException . |
void |
IlvTreeListToFlatTableModel.insertColumn(int columnIndex,
IlvDataColumnInfo column,
Object[] data) |
void |
IlvTreeListToFlatListModel.insertColumn(int columnIndex,
IlvDataColumnInfo column,
Object[] data) |
void |
IlvTableToFlatTableModel.insertColumn(int columnIndex,
IlvDataColumnInfo column,
Object[] data)
Adds a column with given data to the model at a given index.
|
void |
IlvListToFlatTableModel.insertColumn(int columnIndex,
IlvDataColumnInfo column,
Object[] data) |
void |
IlvFlatTableToFlatListModel.insertColumn(int columnIndex,
IlvDataColumnInfo column,
Object[] data) |
void |
IlvFlatSetToFlatTableModel.insertColumn(int columnIndex,
IlvDataColumnInfo column,
Object[] data) |
void |
IlvFlatListToFlatTableModel.insertColumn(int columnIndex,
IlvDataColumnInfo column,
Object[] data) |
void |
IlvDataSourceToFlatTableModel.insertColumn(int columnIndex,
IlvDataColumnInfo column,
Object[] data)
This method throws an
UnsupportedOperationException . |
void |
IlvSubTreeSetModel.noteBeforeColumnRemoved(int column,
IlvDataColumnInfo columnInfo)
Reacts on a
BEFORE_COLUMN_REMOVED event from the underlying model. |
void |
IlvSubTreeListModel.noteBeforeColumnRemoved(int column,
IlvDataColumnInfo columnInfo)
Reacts on a
BEFORE_COLUMN_REMOVED event from the underlying model. |
void |
IlvFilteredTreeSetModel.noteBeforeColumnRemoved(int column,
IlvDataColumnInfo columnInfo)
Reacts on a
BEFORE_COLUMN_REMOVED event from the underlying model. |
void |
IlvFilteredTreeListModel.noteBeforeColumnRemoved(int column,
IlvDataColumnInfo columnInfo)
Reacts on a
BEFORE_COLUMN_REMOVED event from the underlying model. |
void |
IlvFilteredFlatSetModel.noteBeforeColumnRemoved(int column,
IlvDataColumnInfo columnInfo)
Reacts on a
BEFORE_COLUMN_REMOVED event from the underlying model. |
void |
IlvFilteredFlatListModel.noteBeforeColumnRemoved(int column,
IlvDataColumnInfo columnInfo)
Reacts on a
BEFORE_COLUMN_REMOVED event from the underlying model. |
protected void |
IlvTreeListToTreeTableModel.noteColumnAdded(int column,
IlvDataColumnInfo columnInfo)
This method is called when a column has been added to the underlying
model.
|
protected void |
IlvTreeListToTreeModel.noteColumnAdded(int column,
IlvDataColumnInfo columnInfo)
This method is called when a column has been added to the underlying
model.
|
protected void |
IlvTreeListToTreeTableModel.noteColumnRemoved(int column,
IlvDataColumnInfo columnInfo)
This method is called when a column has been removed from the underlying
model.
|
protected void |
IlvTreeListToTreeModel.noteColumnRemoved(int column,
IlvDataColumnInfo columnInfo)
This method is called when a column has been removed from the underlying
model.
|
void |
IlvTreeListToFlatTableModel.setColumn(int i,
IlvDataColumnInfo column) |
void |
IlvTreeListToFlatListModel.setColumn(int i,
IlvDataColumnInfo column) |
void |
IlvListToFlatTableModel.setColumn(int i,
IlvDataColumnInfo column) |
void |
IlvFlatTableToFlatListModel.setColumn(int i,
IlvDataColumnInfo column) |
void |
IlvFlatSetToFlatTableModel.setColumn(int i,
IlvDataColumnInfo column) |
void |
IlvFlatListToFlatTableModel.setColumn(int i,
IlvDataColumnInfo column) |
Modifier and Type | Method and Description |
---|---|
void |
IlvTreeListToFlatTableModel.setColumns(List<IlvDataColumnInfo> columns) |
void |
IlvTreeListToFlatListModel.setColumns(List<IlvDataColumnInfo> columns) |
void |
IlvListToFlatTableModel.setColumns(List<IlvDataColumnInfo> columns) |
void |
IlvFlatTableToFlatListModel.setColumns(List<IlvDataColumnInfo> columns) |
void |
IlvFlatSetToFlatTableModel.setColumns(List<IlvDataColumnInfo> columns) |
void |
IlvFlatListToFlatTableModel.setColumns(List<IlvDataColumnInfo> columns) |
Constructor and Description |
---|
IlvFlatListToFlatTableModel(IlvDefaultFlatListModel model,
IlvObjectFactory creator,
IlvDataColumnInfo[] columns)
Creates a model backed by a given
IlvFlatListModel , with the ability to add
rows, and with the given columns. |
IlvFlatListToFlatTableModel(IlvDefaultFlatListModel model,
IlvObjectFactory creator,
IlvDataColumnInfo[] columns,
int eventsMaskHint)
Creates a model backed by a given
IlvFlatListModel , with the ability to add
rows, and with the given columns. |
IlvFlatListToFlatTableModel(IlvFlatListModel model,
IlvDataColumnInfo[] columns)
Creates a model backed by a given
IlvFlatListModel , with the given columns. |
IlvFlatListToFlatTableModel(IlvFlatListModel model,
IlvDataColumnInfo[] columns,
int eventsMaskHint)
Creates a model backed by a given
IlvFlatListModel , with the given columns. |
IlvFlatSetToFlatTableModel(IlvDefaultFlatSetModel model,
IlvObjectFactory creator,
IlvDataColumnInfo[] columns)
Creates a model backed by a given
ListModel , with the ability to add
rows, and with the given columns. |
IlvFlatSetToFlatTableModel(IlvDefaultFlatSetModel model,
IlvObjectFactory creator,
IlvDataColumnInfo[] columns,
int eventsMaskHint)
Creates a model backed by a given
ListModel , with the ability to add
rows, and with the given columns. |
IlvFlatSetToFlatTableModel(IlvFlatSetModel model,
IlvDataColumnInfo[] columns)
Creates a model backed by a given
ListModel , with the given columns. |
IlvFlatSetToFlatTableModel(IlvFlatSetModel model,
IlvDataColumnInfo[] columns,
int eventsMaskHint)
Creates a model backed by a given
ListModel , with the given columns. |
IlvFlatTableToFlatListModel(IlvFlatTableModel model,
IlvDataColumnInfo[] columns)
Creates a model backed by a given
IlvFlatTableModel , with the given columns. |
IlvFlatTableToFlatListModel(IlvFlatTableModel model,
IlvDataColumnInfo[] columns,
int eventsMaskHint)
Creates a model backed by a given
IlvFlatTableModel , with the given columns. |
IlvListToFlatListModel(ListModel model,
IlvPropertyConnector propaccess,
IlvDataColumnInfo[] columns)
Creates a model backed by a given
ListModel , with the given columns. |
IlvListToFlatListModel(ListModel model,
IlvPropertyConnector propaccess,
IlvDataColumnInfo[] columns,
int eventsMaskHint)
Creates a model backed by a given
ListModel , with the given columns. |
IlvListToFlatTableModel(DefaultListModel model,
IlvPropertyConnector propaccess,
IlvObjectFactory creator,
IlvDataColumnInfo[] columns)
Creates a model backed by a given
ListModel , with the ability to add
or remove rows, and with the given columns. |
IlvListToFlatTableModel(DefaultListModel model,
IlvPropertyConnector propaccess,
IlvObjectFactory creator,
IlvDataColumnInfo[] columns,
int eventsMaskHint)
Creates a model backed by a given
ListModel , with the ability to add
or remove rows, and with the given columns. |
IlvListToFlatTableModel(ListModel model,
IlvPropertyConnector propaccess,
IlvDataColumnInfo[] columns)
Creates a model backed by a given
ListModel , with the given columns. |
IlvListToFlatTableModel(ListModel model,
IlvPropertyConnector propaccess,
IlvDataColumnInfo[] columns,
int eventsMaskHint)
Creates a model backed by a given
ListModel , with the given columns. |
IlvTableToFlatTableModel(TableModel model,
IlvDataColumnInfo[] columns)
Creates a model backed by a given
TableModel , with the
given columns. |
IlvTableToFlatTableModel(TableModel model,
IlvDataColumnInfo[] columns,
int eventsMaskHint)
Creates a model backed by a given
TableModel , with the
given columns. |
IlvTreeListToFlatListModel(IlvTreeListModel model,
int depth,
IlvDataColumnInfo[] columns)
Creates a model backed by a given
TreeModel , with the given columns. |
IlvTreeListToFlatListModel(IlvTreeListModel model,
int depth,
IlvDataColumnInfo[] columns,
int eventsMaskHint)
Creates a model backed by a given
TreeModel , with the given columns. |
IlvTreeListToFlatTableModel(IlvTreeListModel model,
int depth,
IlvDataColumnInfo[] columns)
Creates a model backed by a given
TreeModel , with the given columns. |
IlvTreeListToFlatTableModel(IlvTreeListModel model,
int depth,
IlvDataColumnInfo[] columns,
int eventsMaskHint)
Creates a model backed by a given
TreeModel , with the given columns. |
IlvTreeTableToTreeListModel(TreeModel model,
IlvDataColumnInfo[] columns)
Creates a model backed by a given
TreeTableModel , with the given columns. |
IlvTreeTableToTreeListModel(TreeModel model,
IlvDataColumnInfo[] columns,
int eventsMaskHint)
Creates a model backed by a given
TreeTableModel , with the given columns. |
IlvTreeToFlatTableModel(TreeModel model,
int depth,
IlvPropertyConnector propaccess,
IlvDataColumnInfo[] columns)
Creates a model backed by a given
TreeModel , with the given columns. |
IlvTreeToFlatTableModel(TreeModel model,
int depth,
IlvPropertyConnector propaccess,
IlvDataColumnInfo[] columns,
int eventsMaskHint)
Creates a model backed by a given
TreeModel , with the given columns. |
IlvTreeToTreeListModel(TreeModel model,
IlvPropertyConnector propaccess,
IlvDataColumnInfo[] columns)
Creates a model backed by a given
TreeModel , with the given columns. |
IlvTreeToTreeListModel(TreeModel model,
IlvPropertyConnector propaccess,
IlvDataColumnInfo[] columns,
int eventsMaskHint)
Creates a model backed by a given
TreeModel , with the given columns. |
Modifier and Type | Method and Description |
---|---|
IlvDataColumnInfo |
IlvColumnValuePartitioner.getColumn()
Returns the column whose values are used for partitioning.
|
IlvDataColumnInfo |
IlvColumnValueClusterId.getColumn()
Returns the column whose values share some commonality for the
elements of the cluster represented by this
IlvClusterId . |
Constructor and Description |
---|
IlvColumnValueClusterId(IlvObjectModelWithColumns model,
IlvDataColumnInfo column)
Creates an instance of this class.
|
IlvColumnValuePartitioner(IlvObjectModelWithColumns model,
IlvDataColumnInfo column)
Creates an instance of this class.
|
IlvCustomScalePartitioner(IlvObjectModelWithColumns model,
IlvDataColumnInfo column,
List<? extends Number> thresholds)
Creates an instance of this class.
|
IlvCustomScalePartitionerFactory(IlvDataColumnInfo column,
List<? extends Number> thresholds)
Creates a partitioner factory that partitions according to the values at
the given column.
|
IlvDateClusterId(IlvObjectModelWithColumns model,
IlvDataColumnInfo column,
int calendarField,
int calendarFieldValue)
Creates an instance of this class.
|
IlvDateClusterId(IlvObjectModelWithColumns model,
IlvDataColumnInfo column,
int calendarField,
int calendarFieldValue,
Locale locale)
Creates an instance of this class.
|
IlvDateClusterId(IlvObjectModelWithColumns model,
IlvDataColumnInfo column,
int calendarField,
int calendarFieldValue,
ULocale locale)
Creates an instance of this class.
|
IlvDatePartitioner(IlvObjectModelWithColumns model,
IlvDataColumnInfo column,
int[] calendarFields)
Creates an instance of this class.
|
IlvDatePartitioner(IlvObjectModelWithColumns model,
IlvDataColumnInfo column,
int[] calendarFields,
Locale locale)
Deprecated.
This method ignores the calendar specification in the
ULocale . Please use
IlvDatePartitioner.IlvDatePartitioner(IlvObjectModelWithColumns, IlvDataColumnInfo, int[], ULocale)
instead. |
IlvDatePartitioner(IlvObjectModelWithColumns model,
IlvDataColumnInfo column,
int[] calendarFields,
Locale locale,
Calendar calendar)
Creates an instance of this class.
|
IlvDatePartitioner(IlvObjectModelWithColumns model,
IlvDataColumnInfo column,
int[] calendarFields,
ULocale locale)
Creates an instance of this class.
|
IlvDatePartitioner(IlvObjectModelWithColumns model,
IlvDataColumnInfo column,
int[] calendarFields,
ULocale locale,
Calendar calendar)
Creates an instance of this class.
|
IlvDatePartitionerFactory(IlvDataColumnInfo column)
Creates an instance of this class, which clusters for year, month, day.
|
IlvDatePartitionerFactory(IlvDataColumnInfo column,
int[] calendarFields)
Creates an instance of this class.
|
IlvDatePartitionerFactory(IlvDataColumnInfo column,
int[] calendarFields,
Locale locale)
Deprecated.
This method ignores the calendar specification in the
ULocale . Please use
IlvDatePartitionerFactory.IlvDatePartitionerFactory(IlvDataColumnInfo, int[], ULocale)
instead. |
IlvDatePartitionerFactory(IlvDataColumnInfo column,
int[] calendarFields,
Locale locale,
Calendar calendar)
Creates an instance of this class.
|
IlvDatePartitionerFactory(IlvDataColumnInfo column,
int[] calendarFields,
ULocale locale)
Creates an instance of this class.
|
IlvDatePartitionerFactory(IlvDataColumnInfo column,
int[] calendarFields,
ULocale locale,
Calendar calendar)
Creates an instance of this class.
|
IlvDatePartitionerFactory(IlvDataColumnInfo column,
String format)
Creates an instance of this class.
|
IlvFilenamePartitionerFactory(IlvDataColumnInfo column)
Creates an instance of this class, with some default values.
|
IlvHostnamePartitioner(IlvObjectModelWithColumns model,
IlvDataColumnInfo column)
Creates an instance of this class.
|
IlvHostnamePartitionerFactory(IlvDataColumnInfo column)
Creates an instance of this class.
|
IlvIntervalClusterId(IlvObjectModelWithColumns model,
IlvDataColumnInfo column,
double lowerBound,
double upperBound)
Creates an instance of this class.
|
IlvPathClusterId(IlvObjectModelWithColumns model,
IlvDataColumnInfo column,
String fullPath,
String lastPathComponent)
Creates an instance of this class.
|
IlvPathPartitioner(IlvObjectModelWithColumns model,
IlvDataColumnInfo column,
String separators,
boolean ignoreLeadingSeparators,
boolean ignoreTrailingSeparators,
int maxDepth,
boolean uniqueKeys)
Creates an instance of this class.
|
IlvPathPartitionerFactory(IlvDataColumnInfo column)
Creates an instance of this class, with white spaces as separators and
some default values.
|
IlvPathPartitionerFactory(IlvDataColumnInfo column,
String separators)
Creates an instance of this class, with some default values.
|
IlvPathPartitionerFactory(IlvDataColumnInfo column,
String separators,
boolean ignoreLeadingSeparators,
boolean ignoreTrailingSeparators,
int maxDepth,
boolean uniqueKeys)
Creates an instance of this class.
|
IlvStringClusterId(IlvObjectModelWithColumns model,
IlvDataColumnInfo column,
String columnValue)
Creates an instance of this class.
|
IlvStringPartitioner(IlvObjectModelWithColumns model,
IlvDataColumnInfo column)
Creates an instance of this class.
|
IlvStringPartitionerFactory(IlvDataColumnInfo column)
Creates a partitioner factory that partitions according to the values at
the given column.
|
IlvUniformScalePartitioner(IlvObjectModelWithColumns model,
IlvDataColumnInfo column,
int depth,
int subIntervalCount)
Creates an instance of this class.
|
IlvUniformScalePartitionerFactory(IlvDataColumnInfo column,
int depth,
int subIntervalCount)
Creates a partitioner factory that partitions according to the values at
the given column.
|
IlvURLPartitionerFactory(IlvDataColumnInfo column)
Creates an instance of this class, with some default values.
|
Modifier and Type | Method and Description |
---|---|
IlvDataColumnInfo |
IlvColumnValueComparatorFactory.getColumn()
Returns the column whose values are used for comparison, or
null if it was not specified to the constructor. |
IlvDataColumnInfo |
IlvColumnValueComparator.getSortColumn()
Returns the columns whose values are used for comparison.
|
Constructor and Description |
---|
IlvColumnValueComparator(IlvObjectModelWithColumns model,
IlvDataColumnInfo column)
Creates a comparator that uses a given column to compare objects of a
given model.
|
IlvColumnValueComparator(IlvObjectModelWithColumns model,
IlvDataColumnInfo column,
Comparator comparator,
boolean inverted)
Creates a comparator that uses a given column to compare objects of a
given model.
|
IlvColumnValueComparatorFactory(IlvDataColumnInfo column,
Comparator comparator,
boolean inverted)
Creates a comparator that uses a given column to compare objects of a
model.
|
Modifier and Type | Method and Description |
---|---|
IlvDataColumnInfo |
DataColumnEvent.getColumnInfo()
Returns the column from which this event comes.
|
Constructor and Description |
---|
DataColumnEvent(IlvDataColumnInfo source,
DataColumnEvent.Type type,
boolean oldValue,
boolean newValue)
Creates an event.
|
DataColumnEvent(IlvDataColumnInfo source,
DataColumnEvent.Type type,
Object oldValue,
Object newValue)
Creates an event.
|
Modifier and Type | Method and Description |
---|---|
IlvDataColumnInfo |
IlvFlatListModel.getColumn(int columnIndex)
Returns metainformation about a column.
|
IlvDataColumnInfo |
IlvFilterFlatListModel.getColumn(int columnIndex)
This method is implemented through a call to the underlying model.
|
IlvDataColumnInfo |
IlvBasicFlatListModel.getColumn(int columnIndex)
Returns metainformation about a column.
|
Modifier and Type | Method and Description |
---|---|
List<IlvDataColumnInfo> |
IlvBasicFlatListModel.getColumns()
Returns the list of columns.
|
Modifier and Type | Method and Description |
---|---|
void |
IlvBasicFlatListModel.addColumn(IlvDataColumnInfo column)
Adds a column to the model.
|
void |
IlvBasicFlatListModel.addColumn(IlvDataColumnInfo column,
double[] data)
Adds a column with given data to the model.
|
void |
IlvBasicFlatListModel.addColumn(IlvDataColumnInfo column,
Object[] data)
Adds a column with given data to the model.
|
protected ilog.views.chart.datax.flat.internal.storage.IlvColumnStorage |
IlvPropertyBasedFlatListModel.createColumnStorage(IlvDataColumnInfo column)
Creates the backing storage for a column value.
|
protected ilog.views.chart.datax.flat.internal.storage.IlvColumnStorage |
IlvDefaultFlatListModel.createColumnStorage(IlvDataColumnInfo column)
Creates the backing storage for a column value.
|
void |
IlvFilterFlatListModel.fireBeforeColumnRemoved(int column,
IlvDataColumnInfo columnInfo)
Fires a
BEFORE_COLUMN_REMOVED event. |
void |
IlvFilterFlatListModel.fireColumnAdded(int column,
IlvDataColumnInfo columnInfo)
Fires a
COLUMN_ADDED event. |
void |
IlvFilterFlatListModel.fireColumnRemoved(int column,
IlvDataColumnInfo columnInfo)
Fires a
COLUMN_REMOVED event. |
void |
IlvBufferFlatListModel.insertColumn(int columnIndex,
IlvDataColumnInfo column)
Adds a column to the model at a given index.
|
void |
IlvBasicFlatListModel.insertColumn(int columnIndex,
IlvDataColumnInfo column)
Adds a column to the model at a given index.
|
void |
IlvBufferFlatListModel.insertColumn(int columnIndex,
IlvDataColumnInfo column,
double[] data)
Adds a column with given data to the model at a given index.
|
void |
IlvBasicFlatListModel.insertColumn(int columnIndex,
IlvDataColumnInfo column,
double[] data)
Adds a column with given data to the model at a given index.
|
void |
IlvBufferFlatListModel.insertColumn(int columnIndex,
IlvDataColumnInfo column,
Object[] data)
Adds a column with given data to the model at a given index.
|
void |
IlvBasicFlatListModel.insertColumn(int columnIndex,
IlvDataColumnInfo column,
Object[] data)
Adds a column with given data to the model at a given index.
|
void |
IlvFilterFlatListModel.noteBeforeColumnRemoved(int column,
IlvDataColumnInfo columnInfo)
Reacts on a
BEFORE_COLUMN_REMOVED event from the underlying model. |
void |
IlvFilterFlatListModel.noteColumnAdded(int column,
IlvDataColumnInfo columnInfo)
Reacts on a
COLUMN_ADDED event from the underlying model. |
void |
IlvFilterFlatListModel.noteColumnRemoved(int column,
IlvDataColumnInfo columnInfo)
Reacts on a
COLUMN_REMOVED event from the underlying model. |
void |
IlvBasicFlatListModel.setColumn(int i,
IlvDataColumnInfo column)
Replaces or adds a column.
|
Modifier and Type | Method and Description |
---|---|
void |
IlvBasicFlatListModel.setColumns(List<IlvDataColumnInfo> columns)
Sets the list of columns.
|
Constructor and Description |
---|
IlvBasicFlatListModel(IlvDataColumnInfo[] columns)
Creates a model with the given columns.
|
IlvDefaultFlatListModel(Collection objects,
IlvDataColumnInfo[] columns)
Creates a model with the given objects and the given columns.
|
IlvDefaultFlatListModel(IlvDataColumnInfo[] columns)
Creates an empty model with no objects and the given columns.
|
IlvPropertyBasedFlatListModel(Collection objects,
IlvPropertyConnector propaccess,
IlvDataColumnInfo[] columns)
Creates a model with the given objects and the given columns.
|
IlvPropertyBasedFlatListModel(IlvPropertyConnector propaccess,
IlvDataColumnInfo[] columns)
Creates an empty model, with the given columns.
|
Modifier and Type | Method and Description |
---|---|
IlvDataColumnInfo |
FlatListModelEvent.getColumnInfo()
Returns the meta information of the affected column, or
null
for all columns. |
Constructor and Description |
---|
FlatListModelEvent(IlvFlatListModel source,
FlatListModelEvent.Type type,
int column,
IlvDataColumnInfo columnInfo)
Creates an event.
|
Modifier and Type | Method and Description |
---|---|
IlvDataColumnInfo |
IlvFlatSetModel.getColumn(int columnIndex)
Returns metainformation about a column.
|
IlvDataColumnInfo |
IlvFilterFlatSetModel.getColumn(int columnIndex)
This method is implemented through a call to the underlying model.
|
IlvDataColumnInfo |
IlvBasicFlatSetModel.getColumn(int columnIndex)
Returns metainformation about a column.
|
Modifier and Type | Method and Description |
---|---|
List<IlvDataColumnInfo> |
IlvBasicFlatSetModel.getColumns()
Returns the list of columns.
|
Modifier and Type | Method and Description |
---|---|
void |
IlvBasicFlatSetModel.addColumn(IlvDataColumnInfo column)
Adds a column to the model.
|
void |
IlvBasicFlatSetModel.addColumn(IlvDataColumnInfo column,
double[] data)
Adds a column with given data to the model.
|
void |
IlvBasicFlatSetModel.addColumn(IlvDataColumnInfo column,
Object[] data)
Adds a column with given data to the model.
|
void |
IlvFilterFlatSetModel.fireBeforeColumnRemoved(int column,
IlvDataColumnInfo columnInfo)
Fires a
BEFORE_COLUMN_REMOVED event. |
void |
IlvFilterFlatSetModel.fireColumnAdded(int column,
IlvDataColumnInfo columnInfo)
Fires a
COLUMN_ADDED event. |
void |
IlvFilterFlatSetModel.fireColumnRemoved(int column,
IlvDataColumnInfo columnInfo)
Fires a
COLUMN_REMOVED event. |
void |
IlvBufferFlatSetModel.insertColumn(int columnIndex,
IlvDataColumnInfo column)
Adds a column to the model at a given index.
|
void |
IlvBasicFlatSetModel.insertColumn(int columnIndex,
IlvDataColumnInfo column)
Adds a column to the model at a given index.
|
void |
IlvBufferFlatSetModel.insertColumn(int columnIndex,
IlvDataColumnInfo column,
double[] data)
Adds a column with given data to the model at a given index.
|
void |
IlvBasicFlatSetModel.insertColumn(int columnIndex,
IlvDataColumnInfo column,
double[] data)
Adds a column with given data to the model at a given index.
|
void |
IlvBufferFlatSetModel.insertColumn(int columnIndex,
IlvDataColumnInfo column,
Object[] data)
Adds a column with given data to the model at a given index.
|
void |
IlvBasicFlatSetModel.insertColumn(int columnIndex,
IlvDataColumnInfo column,
Object[] data)
Adds a column with given data to the model at a given index.
|
void |
IlvFilterFlatSetModel.noteBeforeColumnRemoved(int column,
IlvDataColumnInfo columnInfo)
Reacts on a
BEFORE_COLUMN_REMOVED event from the underlying model. |
void |
IlvFilterFlatSetModel.noteColumnAdded(int column,
IlvDataColumnInfo columnInfo)
Reacts on a
COLUMN_ADDED event from the underlying model. |
void |
IlvFilterFlatSetModel.noteColumnRemoved(int column,
IlvDataColumnInfo columnInfo)
Reacts on a
COLUMN_REMOVED event from the underlying model. |
void |
IlvBasicFlatSetModel.setColumn(int i,
IlvDataColumnInfo column)
Replaces or adds a column.
|
Modifier and Type | Method and Description |
---|---|
void |
IlvBasicFlatSetModel.setColumns(List<IlvDataColumnInfo> columns)
Sets the list of columns.
|
Constructor and Description |
---|
IlvBasicFlatSetModel(IlvDataColumnInfo[] columns)
Creates a model with the given columns.
|
IlvDefaultFlatSetModel(Collection objects,
IlvDataColumnInfo[] columns)
Creates a model with the given objects and the given columns.
|
IlvDefaultFlatSetModel(IlvDataColumnInfo[] columns)
Creates an empty model with no objects and the given columns.
|
IlvPropertyBasedFlatSetModel(Collection objects,
IlvPropertyConnector propaccess,
IlvDataColumnInfo[] columns)
Creates a model with the given objects and the given columns.
|
IlvPropertyBasedFlatSetModel(IlvPropertyConnector propaccess,
IlvDataColumnInfo[] columns)
Creates an empty model, with the given columns.
|
Modifier and Type | Method and Description |
---|---|
IlvDataColumnInfo |
FlatSetModelEvent.getColumnInfo()
Returns the metainformation of the affected column, or
null
for all columns. |
Constructor and Description |
---|
FlatSetModelEvent(IlvFlatSetModel source,
FlatSetModelEvent.Type type,
int column,
IlvDataColumnInfo columnInfo)
Creates an event.
|
Modifier and Type | Method and Description |
---|---|
IlvDataColumnInfo |
IlvFlatTableModel.getColumn(int columnIndex)
Returns metainformation about a column.
|
IlvDataColumnInfo |
IlvFilterFlatTableModel.getColumn(int columnIndex)
This method is implemented through a call to the underlying model.
|
IlvDataColumnInfo |
IlvBasicFlatTableModel.getColumn(int columnIndex)
Returns metainformation about a column.
|
Modifier and Type | Method and Description |
---|---|
List<IlvDataColumnInfo> |
IlvBasicFlatTableModel.getColumns()
Returns the list of columns.
|
Modifier and Type | Method and Description |
---|---|
void |
IlvBasicFlatTableModel.addColumn(IlvDataColumnInfo column)
Adds a column to the model.
|
void |
IlvBasicFlatTableModel.addColumn(IlvDataColumnInfo column,
double[] data)
Adds a column with given data to the model.
|
void |
IlvBasicFlatTableModel.addColumn(IlvDataColumnInfo column,
Object[] data)
Adds a column with given data to the model.
|
protected ilog.views.chart.datax.flat.internal.storage.IlvColumnStorage |
IlvBasicFlatTableModel.createColumnStorage(IlvDataColumnInfo column)
Creates the backing storage for column values.
|
void |
IlvFilterFlatTableModel.fireBeforeColumnRemoved(int column,
IlvDataColumnInfo columnInfo)
Fires a
BEFORE_COLUMN_REMOVED event. |
void |
IlvFilterFlatTableModel.fireColumnAdded(int column,
IlvDataColumnInfo columnInfo)
Fires a
COLUMN_ADDED event. |
void |
IlvFilterFlatTableModel.fireColumnRemoved(int column,
IlvDataColumnInfo columnInfo)
Fires a
COLUMN_REMOVED event. |
void |
IlvBufferFlatTableModel.insertColumn(int columnIndex,
IlvDataColumnInfo column)
Adds a column to the model at a given index.
|
void |
IlvBasicFlatTableModel.insertColumn(int columnIndex,
IlvDataColumnInfo column)
Adds a column to the model at a given index.
|
void |
IlvBufferFlatTableModel.insertColumn(int columnIndex,
IlvDataColumnInfo column,
double[] data)
Adds a column with given data to the model at a given index.
|
void |
IlvBasicFlatTableModel.insertColumn(int columnIndex,
IlvDataColumnInfo column,
double[] data)
Adds a column with given data to the model at a given index.
|
void |
IlvBufferFlatTableModel.insertColumn(int columnIndex,
IlvDataColumnInfo column,
Object[] data)
Adds a column with given data to the model at a given index.
|
void |
IlvBasicFlatTableModel.insertColumn(int columnIndex,
IlvDataColumnInfo column,
Object[] data)
Adds a column with given data to the model at a given index.
|
void |
IlvFilterFlatTableModel.noteBeforeColumnRemoved(int column,
IlvDataColumnInfo columnInfo)
Reacts on a
BEFORE_COLUMN_REMOVED event from the underlying model. |
void |
IlvFilterFlatTableModel.noteColumnAdded(int column,
IlvDataColumnInfo columnInfo)
Reacts on a
COLUMN_ADDED event from the underlying model. |
void |
IlvFilterFlatTableModel.noteColumnRemoved(int column,
IlvDataColumnInfo columnInfo)
Reacts on a
COLUMN_REMOVED event from the underlying model. |
void |
IlvBasicFlatTableModel.setColumn(int i,
IlvDataColumnInfo column)
Replaces or adds a column.
|
Modifier and Type | Method and Description |
---|---|
void |
IlvBasicFlatTableModel.setColumns(List<IlvDataColumnInfo> columns)
Sets the list of columns.
|
Constructor and Description |
---|
IlvBasicFlatTableModel(IlvDataColumnInfo[] columns)
Creates a model with the given columns.
|
IlvDefaultFlatTableModel(int numRows,
IlvDataColumnInfo[] columns)
Creates a model with the given number of rows and the given
columns.
|
Modifier and Type | Method and Description |
---|---|
IlvDataColumnInfo |
FlatTableModelEvent.getColumnInfo()
Returns the metainformation of the affected column, or
null
for all columns. |
Constructor and Description |
---|
FlatTableModelEvent(IlvFlatTableModel source,
FlatTableModelEvent.Type type,
int column,
IlvDataColumnInfo columnInfo)
Creates an event.
|
Modifier and Type | Method and Description |
---|---|
protected void |
IlvCommutativeAssociativeOperator.attach(IlvModelWithColumns model,
IlvDataColumnInfo column)
Attaches this operator to a given model and column.
|
void |
IlvMinOperator.attach(IlvModelWithColumns model,
IlvDataColumnInfo column,
Comparator comparator)
Attaches this operator to a given model and column.
|
void |
IlvMaxOperator.attach(IlvModelWithColumns model,
IlvDataColumnInfo column,
Comparator comparator)
Attaches this operator to a given model and column.
|
void |
IlvBoundsOperator.attach(IlvModelWithColumns model,
IlvDataColumnInfo column,
Comparator comparator)
Attaches this operator to a given model and column.
|
protected void |
IlvCommutativeAssociativeOperator.attach(IlvTreeModelWithColumns model,
TreePath branchRootPath,
IlvDataColumnInfo column)
Attaches this operator to a given tree model branch and column.
|
void |
IlvMinOperator.attach(IlvTreeModelWithColumns model,
TreePath branchRootPath,
IlvDataColumnInfo column,
Comparator comparator)
Attaches this operator to a given tree model branch and column.
|
void |
IlvMaxOperator.attach(IlvTreeModelWithColumns model,
TreePath branchRootPath,
IlvDataColumnInfo column,
Comparator comparator)
Attaches this operator to a given tree model branch and column.
|
void |
IlvBoundsOperator.attach(IlvTreeModelWithColumns model,
TreePath branchRootPath,
IlvDataColumnInfo column,
Comparator comparator)
Attaches this operator to a given tree model branch and column.
|
Modifier and Type | Interface and Description |
---|---|
interface |
IlvComputedColumnInfo
This interface describes a tree-table column whose value for each row
can be computed from other column values.
|
Modifier and Type | Method and Description |
---|---|
IlvDataColumnInfo |
IlvTreeListModel.getColumn(int columnIndex)
Returns metainformation about a column.
|
IlvDataColumnInfo |
IlvFilterTreeListModel.getColumn(int columnIndex)
This method is implemented through a call to the underlying model.
|
IlvDataColumnInfo |
IlvBasicTreeListModel.getColumn(int columnIndex)
Returns metainformation about a column.
|
Modifier and Type | Method and Description |
---|---|
List<IlvDataColumnInfo> |
IlvBasicTreeListModel.getColumns()
Returns the list of columns.
|
Modifier and Type | Method and Description |
---|---|
void |
IlvBasicTreeListModel.addColumn(IlvDataColumnInfo column)
Adds a column to the model.
|
void |
IlvBasicTreeListModel.addColumn(IlvDataColumnInfo column,
Map data)
Adds a column with given data to the model.
|
void |
IlvFilterTreeListModel.fireBeforeColumnRemoved(int column,
IlvDataColumnInfo columnInfo)
Fires a
BEFORE_COLUMN_REMOVED event. |
void |
IlvFilterTreeListModel.fireColumnAdded(int column,
IlvDataColumnInfo columnInfo)
Fires a
COLUMN_ADDED event. |
void |
IlvFilterTreeListModel.fireColumnRemoved(int column,
IlvDataColumnInfo columnInfo)
Fires a
COLUMN_REMOVED event. |
void |
IlvBufferTreeListModel.insertColumn(int columnIndex,
IlvDataColumnInfo column)
Adds a column to the model at a given index.
|
void |
IlvBasicTreeListModel.insertColumn(int columnIndex,
IlvDataColumnInfo column)
Adds a column to the model at a given index.
|
void |
IlvBufferTreeListModel.insertColumn(int columnIndex,
IlvDataColumnInfo column,
Map data)
Adds a column with given data to the model at a given index.
|
void |
IlvBasicTreeListModel.insertColumn(int columnIndex,
IlvDataColumnInfo column,
Map data)
Adds a column with given data to the model at a given index.
|
void |
IlvFilterTreeListModel.noteBeforeColumnRemoved(int column,
IlvDataColumnInfo columnInfo)
Reacts on a
BEFORE_COLUMN_REMOVED event from the underlying model. |
void |
IlvFilterTreeListModel.noteColumnAdded(int column,
IlvDataColumnInfo columnInfo)
Reacts on a
COLUMN_ADDED event from the underlying model. |
void |
IlvFilterTreeListModel.noteColumnRemoved(int column,
IlvDataColumnInfo columnInfo)
Reacts on a
COLUMN_REMOVED event from the underlying model. |
void |
IlvBasicTreeListModel.setColumn(int i,
IlvDataColumnInfo column)
Replaces or adds a column.
|
Modifier and Type | Method and Description |
---|---|
void |
IlvBasicTreeListModel.setColumns(List<IlvDataColumnInfo> columns)
Sets the list of columns.
|
Constructor and Description |
---|
IlvBasicTreeListModel(IlvDataColumnInfo[] columns)
Creates a model with the given columns.
|
IlvDefaultTreeListModel(IlvDataColumnInfo[] columns)
Creates an empty model with no objects and the given columns.
|
IlvDefaultTreeListModel(Object root,
Collection objects,
IlvDataColumnInfo[] columns)
Creates a model with the given root, the given first-level objects and
the given columns.
|
IlvPropertyBasedTreeListModel(IlvPropertyConnector propaccess,
IlvDataColumnInfo[] columns)
Creates an empty model, with the given columns.
|
Modifier and Type | Method and Description |
---|---|
IlvDataColumnInfo |
TreeListModelEvent.getColumnInfo()
Returns the metainformation of the affected column, or
null
for all columns. |
Constructor and Description |
---|
TreeListModelEvent(IlvTreeListModel source,
TreeListModelEvent.Type type,
int column,
IlvDataColumnInfo columnInfo)
Creates an event.
|
Modifier and Type | Method and Description |
---|---|
IlvDataColumnInfo |
IlvTreeSetModel.getColumn(int columnIndex)
Returns metainformation about a column.
|
IlvDataColumnInfo |
IlvFilterTreeSetModel.getColumn(int columnIndex)
This method is implemented through a call to the underlying model.
|
IlvDataColumnInfo |
IlvBasicTreeSetModel.getColumn(int columnIndex)
Returns metainformation about a column.
|
Modifier and Type | Method and Description |
---|---|
List<IlvDataColumnInfo> |
IlvBasicTreeSetModel.getColumns()
Returns the list of columns.
|
Modifier and Type | Method and Description |
---|---|
void |
IlvBasicTreeSetModel.addColumn(IlvDataColumnInfo column)
Adds a column to the model.
|
void |
IlvBasicTreeSetModel.addColumn(IlvDataColumnInfo column,
Map data)
Adds a column with given data to the model.
|
void |
IlvFilterTreeSetModel.fireBeforeColumnRemoved(int column,
IlvDataColumnInfo columnInfo)
Fires a
BEFORE_COLUMN_REMOVED event. |
void |
IlvFilterTreeSetModel.fireColumnAdded(int column,
IlvDataColumnInfo columnInfo)
Fires a
COLUMN_ADDED event. |
void |
IlvFilterTreeSetModel.fireColumnRemoved(int column,
IlvDataColumnInfo columnInfo)
Fires a
COLUMN_REMOVED event. |
void |
IlvBufferTreeSetModel.insertColumn(int columnIndex,
IlvDataColumnInfo column)
Adds a column to the model at a given index.
|
void |
IlvBasicTreeSetModel.insertColumn(int columnIndex,
IlvDataColumnInfo column)
Adds a column to the model at a given index.
|
void |
IlvBufferTreeSetModel.insertColumn(int columnIndex,
IlvDataColumnInfo column,
Map data)
Adds a column with given data to the model at a given index.
|
void |
IlvBasicTreeSetModel.insertColumn(int columnIndex,
IlvDataColumnInfo column,
Map data)
Adds a column with given data to the model at a given index.
|
void |
IlvFilterTreeSetModel.noteBeforeColumnRemoved(int column,
IlvDataColumnInfo columnInfo)
Reacts on a
BEFORE_COLUMN_REMOVED event from the underlying model. |
void |
IlvFilterTreeSetModel.noteColumnAdded(int column,
IlvDataColumnInfo columnInfo)
Reacts on a
COLUMN_ADDED event from the underlying model. |
void |
IlvFilterTreeSetModel.noteColumnRemoved(int column,
IlvDataColumnInfo columnInfo)
Reacts on a
COLUMN_REMOVED event from the underlying model. |
void |
IlvBasicTreeSetModel.setColumn(int i,
IlvDataColumnInfo column)
Replaces or adds a column.
|
Modifier and Type | Method and Description |
---|---|
void |
IlvBasicTreeSetModel.setColumns(List<IlvDataColumnInfo> columns)
Sets the list of columns.
|
Constructor and Description |
---|
IlvBasicTreeSetModel(IlvDataColumnInfo[] columns)
Creates a model with the given columns.
|
IlvDefaultTreeSetModel(IlvDataColumnInfo[] columns)
Creates an empty model with no objects and the given columns.
|
IlvDefaultTreeSetModel(Object root,
Collection objects,
IlvDataColumnInfo[] columns)
Creates a model with the given root, the given first-level objects and
the given columns.
|
IlvPropertyBasedTreeSetModel(IlvPropertyConnector propaccess,
IlvDataColumnInfo[] columns)
Creates an empty model, with the given columns.
|
Modifier and Type | Method and Description |
---|---|
IlvDataColumnInfo |
TreeSetModelEvent.getColumnInfo()
Returns the meta information of the affected column, or
null
for all columns. |
Constructor and Description |
---|
TreeSetModelEvent(IlvTreeSetModel source,
TreeSetModelEvent.Type type,
int column,
IlvDataColumnInfo columnInfo)
Creates an event.
|
Modifier and Type | Method and Description |
---|---|
IlvDataColumnInfo |
IlvTreemapChartRenderer.getAreaColumn()
Returns the column chosen to determine the area of every object.
|
IlvDataColumnInfo |
IlvTreemapChartRenderer.getColorColumn()
Returns the column chosen to determine the color of every rectangle.
|
IlvDataColumnInfo |
IlvTreemapChartRenderer.getCSSClassesColumn()
Returns the column chosen to determine the CSS classes of every object.
|
IlvDataColumnInfo |
IlvTreemapChartRenderer.getLabelColumn()
Returns the column chosen to determine the label of every object, when
an
IlvDataLabelAnnotation is in use. |
Modifier and Type | Method and Description |
---|---|
abstract IlvContinuousColorDistribution |
IlvValueColorScheme.createContinuousDistribution(IlvTreeListModel model,
IlvDataColumnInfo column,
IlvDataConverter converter)
Chooses and returns a color distribution for a given column of real values
in a model of objects.
|
IlvContinuousColorDistribution |
IlvNormalizedValueColorScheme.createContinuousDistribution(IlvTreeListModel model,
IlvDataColumnInfo column,
IlvDataConverter converter)
Chooses and returns a color distribution for a given column of real values
in a model of objects.
|
abstract IlvContinuousColorDistribution |
IlvNormalizedValueColorScheme.createContinuousDistribution(IlvTreeListModel model,
IlvDataColumnInfo column,
IlvNormalizedValueColorScheme.Evaluator evaluator,
IlvDataConverter converter)
Chooses and returns a color distribution for a given column of real values
in a model of objects.
|
IlvContinuousColorDistribution |
IlvMinMaxNormalizedValueColorScheme.createContinuousDistribution(IlvTreeListModel model,
IlvDataColumnInfo column,
IlvNormalizedValueColorScheme.Evaluator evaluator,
IlvDataConverter converter)
Chooses and returns a color distribution for a given column of real values
in a model of objects.
|
abstract IlvEnumeratedColorDistribution |
IlvValueColorScheme.createEnumeratedDistribution(IlvTreeListModel model,
IlvDataColumnInfo column,
Collection values)
Chooses and returns a color distribution for a given enumerated column
in a model of objects.
|
IlvEnumeratedColorDistribution |
IlvNormalizedValueColorScheme.createEnumeratedDistribution(IlvTreeListModel model,
IlvDataColumnInfo column,
Collection possibleValues)
Chooses and returns a color distribution for a given enumerated column
in a model of objects.
|
void |
IlvTreemapChartRenderer.setAreaColumn(IlvDataColumnInfo areaColumn)
Sets the column chosen to determine the area of every object.
|
void |
IlvTreemapChartRenderer.setColorColumn(IlvDataColumnInfo areaColumn)
Sets the column chosen to determine the color of every rectangle.
|
void |
IlvTreemapChartRenderer.setCSSClassesColumn(IlvDataColumnInfo CSSClassesColumn)
Sets the column chosen to determine the CSS classes of every object.
|
void |
IlvTreemapChartRenderer.setLabelColumn(IlvDataColumnInfo labelColumn)
Sets the column chosen to determine the label of every object, as shown
by
IlvDataLabelAnnotation . |
© Copyright Rogue Wave Software, Inc. 1997, 2018. All Rights Reserved.