Package | Description |
---|---|
ilog.views.chart |
Contains all of the main Chart classes and interfaces.
|
ilog.views.chart.accessibility |
Contains classes for the accessible elements of a chart.
|
ilog.views.chart.data |
Contains classes related to the Chart data model.
|
ilog.views.chart.data.lod |
Contains classes related to the load-on-demand mechanism.
|
ilog.views.chart.data.xml |
This package contains readers and writers that allow read/write Chart
data from/to org.w3c.dom.Document object.
|
ilog.views.chart.event |
Provides interfaces and classes for dealing with different types of events fired by main Chart classes.
|
ilog.views.chart.renderer |
Contains the predefined chart renderer classes.
|
ilog.views.chart.servlet |
Provides a Java Servlet that can produce images from an
IlvChart . |
ilog.views.schedule.data |
Contains data set implementations that derive numerical information from
Gantt data models.
|
Modifier and Type | Method and Description |
---|---|
IlvDataSet |
IlvCategoryStepsDefinition.getLabelDataSet()
Returns the data set that is used for computing labels.
|
IlvDataSet |
IlvChartRenderer.getVirtualDataSet(IlvDataSet dataSet)
Returns the virtual data set that is actually used internally in the
renderer for rendering the specified data set.
|
Modifier and Type | Method and Description |
---|---|
Iterator<IlvDataSet> |
IlvChart.getDataSetIterator()
Returns an iterator over all the data sets connected to this chart.
|
Modifier and Type | Method and Description |
---|---|
void |
IlvChart.addPseudoClass(IlvDataSet dataSet,
int idx,
String pseudoClass)
Adds a pseudo-class to the specified data point in the context of this
chart.
|
void |
IlvChart.addPseudoClass(IlvDataSet dataSet,
String pseudoClass)
Adds a pseudo-class to the specified data set in the context of this chart.
|
void |
IlvChart.addRenderer(IlvChartRenderer renderer,
IlvDataSet dataSet)
Adds a renderer, and connects it to the specified data set.
|
protected static void |
IlvChartRenderer.applyStyles(IlvDataSet dataSet,
IlvChartRenderer renderer,
boolean doClear,
int firstIdx,
int lastIdx,
ilog.views.chart.styling.IlvStylingSupport support)
Re-applies styles on the specific data points.
|
static ilog.views.chart.styling.IlvDataSetStyle |
IlvChartRenderer.applyStyles(IlvDataSet dataSet,
IlvChartRenderer renderer,
IlvChartRenderer rendererBean,
ilog.views.chart.styling.IlvStylingSupport support,
boolean differentNodes)
Applies styles on the specified data set.
|
protected void |
IlvChartRenderer.dataSetsAdded(int firstIdx,
int lastIdx,
IlvDataSet[] oldDataSets)
Called when new data sets are connected to this renderer.
|
protected void |
IlvChartRenderer.dataSetsRemoved(int firstIdx,
int lastIdx,
IlvDataSet[] oldDataSets)
Called when data sets are disconnected from this renderer.
|
abstract void |
IlvChartRenderer.draw(Graphics dst,
IlvDataSet dataSet,
int iMin,
int iMax)
Deprecated.
This method is not used by JViews.
|
void |
IlvChartRenderer.drawSelectionHandles(Graphics g,
IlvHandlesSelectionStyle style,
IlvDataSet dataSet)
Draws a data set with selection handles.
|
void |
IlvChartRenderer.drawSelectionHandles(Graphics g,
IlvHandlesSelectionStyle style,
IlvDataSet dataSet,
int index)
Draws a data point with selection handles.
|
abstract IlvDataAnnotation |
IlvChartRenderer.getAnnotation(IlvDataSet dataSet,
int idx)
Returns the annotation of the specified data point.
|
Rectangle2D |
IlvChartRenderer.getBounds(IlvDataSet dataSet,
int iMin,
int iMax,
Rectangle2D bounds)
Returns the bounds of the graphical representation for the
specified data.
|
abstract Rectangle2D |
IlvChartRenderer.getBounds(IlvDataSet dataSet,
int iMin,
int iMax,
Rectangle2D bounds,
boolean includeAnnotations)
Returns the bounds of the graphical representation for the
specified data.
|
int |
IlvChartRenderer.getDataSetIndex(IlvDataSet dataSet)
Returns the index of the specified data set in the data source
connected to this renderer.
|
int |
IlvChartRenderer.getDataSetMainIndex(IlvDataSet dataSet)
Returns the index of the specified data set in the data source connected
to the main renderer in the parent chain of this renderer.
|
IlvChartRenderer |
IlvChartRenderer.getDataSetMainRenderer(IlvDataSet dataSet)
Returns the main renderer of the specified data set in the parent chain
of this renderer.
|
abstract IlvDisplayPoint |
IlvChartRenderer.getDisplayPoint(IlvDataSet dataSet,
int dataIdx)
Returns the display point corresponding to the specified data point.
|
String[] |
IlvChart.getPseudoClasses(IlvDataSet dataSet)
Returns the pseudo-classes of the specified data set in the context of this
chart.
|
String[] |
IlvChart.getPseudoClasses(IlvDataSet dataSet,
int idx)
Returns the pseudo-classes of the specified data point in the context of
this chart.
|
abstract IlvDataRenderingHint |
IlvChartRenderer.getRenderingHint(IlvDataSet dataSet)
Returns the rendering hint that was specified globally for all the points
of the given data set.
|
abstract IlvDataRenderingHint |
IlvChartRenderer.getRenderingHint(IlvDataSet dataSet,
int idx)
Returns the rendering hint of the specified data point.
|
abstract IlvStyle |
IlvChartRenderer.getStyle(IlvDataSet dataSet,
int index)
Returns the style used to display the specified data point.
|
IlvDataSet |
IlvChartRenderer.getVirtualDataSet(IlvDataSet dataSet)
Returns the virtual data set that is actually used internally in the
renderer for rendering the specified data set.
|
boolean |
IlvChartRenderer.isDisplayingDataSet(IlvDataSet dataSet)
Indicates whether the current renderer is used to display the specified
data set.
|
void |
IlvChart.removePseudoClass(IlvDataSet dataSet,
int idx,
String pseudoClass)
Removes a pseudo-class from the specified data point in the context of this
chart.
|
void |
IlvChart.removePseudoClass(IlvDataSet dataSet,
String pseudoClass)
Removes a pseudo-class from the specified data set in the context of this
chart.
|
abstract void |
IlvChartRenderer.setAnnotation(IlvDataSet dataSet,
IlvDataAnnotation annotation)
Specifies a global annotation for all the points of a data set.
|
abstract void |
IlvChartRenderer.setAnnotation(IlvDataSet dataSet,
int idx,
IlvDataAnnotation annotation)
Specifies an annotation for a data point.
|
void |
IlvScale.setCategory(IlvDataSet dataSet,
boolean tickBetweenCategory)
Specifies that this scale should display categories.
|
void |
IlvChartRenderer.setDataPoint(IlvDataSet dataSet,
int dataIndex,
double xData,
double yData)
Changes the value of a data point.
|
abstract void |
IlvChartRenderer.setDisplayPoint(IlvDataSet dataSet,
int dataIndex,
double xCoord,
double yCoord)
Changes the value of a data point according to the specified projected
coordinates.
|
void |
IlvChart.setPseudoClasses(IlvDataSet dataSet,
int idx,
String[] classes)
Sets the pseudo-classes of the specified data point in the context of this
chart.
|
void |
IlvChart.setPseudoClasses(IlvDataSet dataSet,
String[] classes)
Sets the pseudo-classes of the specified data set in the context of this
chart.
|
abstract void |
IlvChartRenderer.setRenderingHint(IlvDataSet dataSet,
IlvDataRenderingHint hint)
Specifies a global rendering hint for all the points of a data set.
|
abstract void |
IlvChartRenderer.setRenderingHint(IlvDataSet dataSet,
int idx,
IlvDataRenderingHint hint)
Specifies a rendering hint for a data point.
|
Constructor and Description |
---|
IlvCategoryStepsDefinition(boolean stepBetweenCategory,
IlvDataSet dataSet)
Creates a new
IlvCategoryStepsDefinition that will use the
data labels of the specified data set. |
IlvDisplayArea(IlvChartRenderer renderer,
IlvDataSet dataSet,
int index)
Creates a new
IlvDisplayArea object associated with
the specified renderer and data point. |
IlvDisplayPoint(IlvChartRenderer renderer,
IlvDataSet dataSet)
Creates a new
IlvDisplayPoint object associated with
the specified renderer and data set representing a data at index 0
with (0,0) as coordinates. |
IlvDisplayPoint(IlvChartRenderer renderer,
IlvDataSet dataSet,
int index,
double xCoord,
double yCoord)
Creates a new
IlvDisplayPoint object. |
Modifier and Type | Method and Description |
---|---|
IlvDataSet |
IlvAccessibleDataSet.getDataSet()
Returns the data set.
|
IlvDataSet |
IlvAccessibleDataPoint.getDataSet()
Returns the data set.
|
Modifier and Type | Method and Description |
---|---|
boolean |
IlvDefaultChartAreaAccessibleHierarchy.isSelectable(IlvDataSet dataSet)
Returns true if the given data set is selectable.
|
void |
IlvDefaultChartAreaAccessibleHierarchy.setSelectable(IlvDataSet dataSet,
boolean selectable)
Specifies whether a given data set shall be selectable or not.
|
Constructor and Description |
---|
IlvAccessibleDataPoint(IlvChartRenderer renderer,
IlvDataSet dataSet,
int index)
Creates an
IlvAccessibleDataPoint instance. |
IlvAccessibleDataSet(IlvChartRenderer renderer,
IlvDataSet dataSet)
Creates an
IlvAccessibleDataSet instance. |
Modifier and Type | Class and Description |
---|---|
class |
IlvAbstractDataSet
This abstract class provides default implementations for some of the methods
in the
IlvDataSet interface. |
class |
IlvCombinedDataSet
Represents a data set expressed as a combination of other data sets.
|
class |
IlvCyclicDataSet
Implements a data set where values are stored in a fixed-size buffer.
|
class |
IlvDefaultDataSet
Default data set that accesses data stored in memory.
|
class |
IlvFilterDataSet
This class is a base class for data sets that encapsulate other
data sets.
|
class |
IlvFunctionDataSet
A data set implemented as a function call.
|
class |
IlvMovingAvgDataSet
Implements a data set that computes the moving average of another data set.
|
class |
IlvXSortedDataSet
This class encapsulates a data set and sorts its data points so that the
X values are in ascending order.
|
Modifier and Type | Field and Description |
---|---|
IlvDataSet |
IlvDataSetPoint.dataSet
The data set to which the data point belongs.
|
Modifier and Type | Method and Description |
---|---|
protected IlvDataSet[] |
IlvJDBCDataSource.buildDataSets(ResultSet resultSet)
Builds the data sets from the specified
ResultSet . |
IlvDataSet |
IlvDataSetPoint.getDataSet()
Returns the data set to which this data point belongs.
|
IlvDataSet |
IlvDataPoints.getDataSet()
Returns the data set to which these data points belong.
|
IlvDataSet |
IlvDataSource.getDataSet(int idx)
Returns the data set at the specified index.
|
IlvDataSet |
IlvDataSetList.getDataSet(int index)
Returns the data set at the specified index.
|
IlvDataSet |
IlvCombinedDataSet.getDataSet(int index)
Returns the data set at the specified index.
|
IlvDataSet |
IlvAbstractDataSource.getDataSet(int idx)
Returns the data set at the specified index.
|
IlvDataSet |
IlvDefaultDataSource.getDataSetAtPosition(int targetIndex)
Returns the data set at a specified target position.
|
IlvDataSet |
IlvAbstractDataSource.getDataSetByName(String dataSetName)
Returns the data set with the given name, of
null if there
is none. |
IlvDataSet[] |
IlvDataSource.getDataSets()
Returns the data sets provided by this data source.
|
IlvDataSet[] |
IlvDataSetList.getDataSets()
Returns an array containing all the managed data sets.
|
IlvDataSet[] |
IlvCombinedDataSet.getDataSets()
Returns an array containing all the managed data sets.
|
IlvDataSet[] |
IlvAbstractDataSource.getDataSets()
Returns the data sets provided by this data source.
|
IlvDataSet |
IlvFilterDataSet.getFilteredDataSet()
Returns the underlying data set.
|
IlvDataSet[] |
IlvDataReader.read(InputStream in)
Returns data read from the given
InputStream . |
IlvDataSet[] |
IlvDataReader.read(String url)
Returns data read from the given URL.
|
Modifier and Type | Method and Description |
---|---|
Iterator<IlvDataSet> |
IlvDataSource.getDataSetIterator()
Returns an iterator over the data sets provided by this data source.
|
Iterator<IlvDataSet> |
IlvAbstractDataSource.getDataSetIterator()
Returns an iterator over the data sets provided by this data source.
|
Modifier and Type | Method and Description |
---|---|
void |
IlvTreeTableDataSource.addDataSet(IlvDataSet dataSet)
Adds a new data set at the end of this data source.
|
void |
IlvDefaultDataSource.addDataSet(IlvDataSet dataSet)
Adds a new data set at the end of this data source.
|
void |
IlvDataSource.addDataSet(IlvDataSet dataSet)
Adds a new data set at the end of this data source.
|
void |
IlvDataSetList.addDataSet(IlvDataSet dataSet)
Appends a data set to the end of this collection.
|
void |
IlvCombinedDataSet.addDataSet(IlvDataSet dataSet)
Appends a data set to the end of the list.
|
void |
IlvAbstractDataSource.addDataSet(IlvDataSet dataSet)
Adds a new data set at the end of this data source.
|
void |
IlvTreeTableDataSource.addDataSet(int idx,
IlvDataSet dataSet)
Inserts a new data set at the specified position.
|
void |
IlvDefaultDataSource.addDataSet(int index,
IlvDataSet dataSet)
Inserts a new data set at the specified position.
|
void |
IlvDataSource.addDataSet(int idx,
IlvDataSet dataSet)
Inserts a new data set at the specified position.
|
void |
IlvDataSetList.addDataSet(int index,
IlvDataSet dataSet)
Inserts a data set at the specified index.
|
void |
IlvCombinedDataSet.addDataSet(int index,
IlvDataSet dataSet)
Inserts a data set at the specified index.
|
void |
IlvAbstractDataSource.addDataSet(int idx,
IlvDataSet dataSet)
Inserts a new data set at the specified position.
|
static void |
IlvDataSetProperty.addPseudoClass(IlvDataSet dataSet,
String pseudoClass)
Adds a pseudo-class to the specified data set.
|
static double |
IlvAbstractDataSet.computeMinimumXDifference(IlvDataSet ds)
Computes the minimum positive difference among adjacent X values in the
sequence of X values, sorted into ascending order.
|
boolean |
IlvDataSource.containsDataSet(IlvDataSet dataSet)
Tells whether this data source contains the specified data set.
|
boolean |
IlvAbstractDataSource.containsDataSet(IlvDataSet dataSet)
Tells whether this data source contains the specified data set.
|
static Double |
IlvDataSetProperty.getCategory(IlvDataSet dataSet)
Returns the value of the
Category property for the specified data set. |
static String |
IlvDataSetProperty.getCSSClasses(IlvDataSet dataSet)
Returns the CSS classes of the specified data set.
|
int |
IlvDataSource.getDataSetIndex(IlvDataSet dataSet)
Returns the index of the specified data set.
|
int |
IlvDataSetList.getDataSetIndex(IlvDataSet dataSet)
Returns the index of a data set in the list.
|
int |
IlvCombinedDataSet.getDataSetIndex(IlvDataSet dataSet)
Returns the index of a data set in the list.
|
int |
IlvAbstractDataSource.getDataSetIndex(IlvDataSet dataSet)
Returns the index of the specified data set.
|
static IlvDataSource |
IlvDataSetProperty.getDataSource(IlvDataSet dataSet)
Returns the main data source of the specified data set.
|
static int |
IlvDataSetProperty.getIndex(IlvDataSet dataSet)
Deprecated.
Since JViews 8.7, this method is deprecated. Better use the
method
IlvChartRenderer.getDataSetMainIndex(IlvDataSet) . |
static String[] |
IlvDataSetProperty.getPseudoClasses(IlvDataSet dataSet)
Returns the pseudo-classes of the specified data set.
|
protected void |
IlvAbstractDataSource.initDataSets(IlvDataSet[] dataSets)
Initializes the data source with the specified data sets.
|
static boolean |
IlvDataSetProperty.isXTimeSeries(IlvDataSet dataSet)
Returns the value of the
XTimeSeries property for the specified data set. |
static boolean |
IlvDataSetProperty.isYTimeSeries(IlvDataSet dataSet)
Returns the value of the
YTimeSeries property for the specified data set. |
boolean |
IlvDataSetList.removeDataSet(IlvDataSet dataSet)
Removes the specified data set.
|
boolean |
IlvCombinedDataSet.removeDataSet(IlvDataSet dataSet)
Removes the specified data set.
|
static void |
IlvDataSetProperty.removePseudoClass(IlvDataSet dataSet,
String pseudoClass)
Removes a pseudo-class from the specified data set.
|
boolean |
IlvDataSetList.replaceDataSet(IlvDataSet oldDataSet,
IlvDataSet newDataSet)
Replaces a data set by another data set.
|
boolean |
IlvCombinedDataSet.replaceDataSet(IlvDataSet oldDataSet,
IlvDataSet newDataSet)
Replaces a data set by another data set.
|
static void |
IlvDataSetProperty.setCategory(IlvDataSet dataSet,
Double category)
Sets the value of the
category property on the specified
data set to the given value. |
static void |
IlvDataSetProperty.setCSSClasses(IlvDataSet dataSet,
String CSSclasses)
Sets the CSS classes of the specified data set.
|
void |
IlvTreeTableDataSource.setDataSet(int idx,
IlvDataSet dataSet)
Replaces the data set at the specified index.
|
void |
IlvDefaultDataSource.setDataSet(int idx,
IlvDataSet dataSet)
Replaces the data set at the specified position.
|
void |
IlvDataSource.setDataSet(int idx,
IlvDataSet dataSet)
Replaces the data set at the specified index.
|
void |
IlvDataSetList.setDataSet(int index,
IlvDataSet dataSet)
Replaces the data set at the specified position.
|
void |
IlvCombinedDataSet.setDataSet(int index,
IlvDataSet dataSet)
Replaces the data set at the specified position.
|
void |
IlvAbstractDataSource.setDataSet(int idx,
IlvDataSet dataSet)
Replaces the data set at the specified index.
|
void |
IlvDefaultDataSource.setDataSetAtPosition(int targetIndex,
IlvDataSet dataSet)
Sets the data set at a specified target position.
|
void |
IlvTreeTableDataSource.setDataSets(IlvDataSet[] dataSets)
Initializes this data source with the specified data sets.
|
void |
IlvSwingTableDataSource.setDataSets(IlvDataSet[] dataSets)
Initializes this data source with the specified data sets.
|
void |
IlvDefaultDataSource.setDataSets(IlvDataSet[] dataSets)
Initializes this data source with the specified data sets.
|
void |
IlvDataSource.setDataSets(IlvDataSet[] dataSets)
Initializes this data source with the specified data sets.
|
void |
IlvDataSetList.setDataSets(IlvDataSet[] dataSets)
Initializes the list contents with the specified array.
|
void |
IlvCombinedDataSet.setDataSets(IlvDataSet[] dataSets)
Initializes the list contents with the specified array.
|
void |
IlvAbstractDataSource.setDataSets(IlvDataSet[] dataSets)
Initializes this data source with the specified data sets.
|
static void |
IlvDataSetProperty.setDataSource(IlvDataSet dataSet,
IlvDataSource dataSource)
Sets the main data source of the specified data set.
|
void |
IlvFilterDataSet.setFilteredDataSet(IlvDataSet dataSet)
Sets the underlying data set.
|
static void |
IlvDataSetProperty.setPseudoClasses(IlvDataSet dataSet,
String[] classes)
Sets the pseudo-classes of the specified data set.
|
static void |
IlvDataSetProperty.setXTimeSeries(IlvDataSet dataSet,
boolean time)
Sets the value of the
XTimeSeries property on the specified data set
to the given value. |
static void |
IlvDataSetProperty.setYTimeSeries(IlvDataSet dataSet,
boolean time)
Sets the value of the
YTimeSeries property on the specified data set
to the given value. |
Constructor and Description |
---|
IlvDataPoints(IlvDataSet dataSet,
int count)
Creates a new object associated with the given data set and allocates
storage for
count value pairs. |
IlvDataPoints(IlvDataSet dataSet,
int count,
double[] xValues,
double[] yValues,
int[] indices)
Creates a new object and initializes it with the given values and indices.
|
IlvDataSetPoint(IlvDataSet dataSet,
int index)
Creates a new
IlvDataSetPoint representing the data
at the given index in the specified data set. |
IlvDefaultDataSource(IlvDataSet[] dataSets)
Creates a new data source and initializes it with the specified data sets.
|
IlvFilterDataSet(IlvDataSet dataSet)
Creates a filter data set.
|
IlvMovingAvgDataSet(IlvDataSet dataSet,
int period)
Creates a moving average of the specified data set, with the specified period.
|
IlvXSortedDataSet(IlvDataSet dataSet)
Creates a sorted data set.
|
Modifier and Type | Class and Description |
---|---|
class |
IlvLODDataSet
A data set that loads its contents on demand.
|
Modifier and Type | Method and Description |
---|---|
protected IlvDataSet |
IlvXMLDataReader.createDataSet(String name,
double[] xvalues,
double[] yvalues)
Creates a new
IlvDataSet . |
IlvDataSet[] |
IlvXMLDataReader.read(Document document)
Read a chart data model from the specified
org.w3c.dom.Document . |
IlvDataSet[] |
IlvXMLDataReader.read(InputSource in)
Reads a chart data model from the specified
org.xml.sax.InputSource . |
IlvDataSet[] |
IlvXMLDataReader.read(InputStream in)
Reads a chart data model from an XML document.
|
IlvDataSet[] |
IlvXMLDataReader.read(String uri)
Reads a chart data model from an XML document.
|
Modifier and Type | Method and Description |
---|---|
String |
IlvXMLDataWriter.generateId(IlvDataSet dataSet,
boolean xSeries)
Generates the XML ID for the specified series of the specified data set.
|
void |
IlvXMLPropertyReader.setProperty(IlvDataSet dataSet,
String propertyName,
Object value)
Installs the specified property on the specified data set.
|
void |
IlvXMLDataWriter.write(Document document,
IlvDataSet[] dataSets)
Writes in the specified XML document the contents of the specified
data set arrays.
|
void |
IlvXMLDataWriter.write(OutputStream output,
IlvDataSet[] dataSets)
Writes in the specified output stream the contents of the specified data
set arrays as an XML document.
|
protected void |
IlvXMLDataWriter.writeProperties(Element srcElt,
IlvDataSet ds)
Writes the
property elements for the specified data set. |
Modifier and Type | Method and Description |
---|---|
IlvDataSet |
DataSetPropertyEvent.getDataSet()
Returns the data set on which the change occurred.
|
IlvDataSet |
DataSetEvent.getDataSet()
Returns the source of the event, e.g the data set on which the change
occurred.
|
IlvDataSet |
DataSetContentsEvent.getDataSet()
Returns the source of the event, for example the data set on which the change
occurred.
|
IlvDataSet[] |
DataSourceEvent.getOldDataSets()
Returns the data sets provided by the data source before the
change occurred.
|
Constructor and Description |
---|
DataSetContentsEvent(IlvDataSet dataSet)
Describes a full update of the data set.
|
DataSetContentsEvent(IlvDataSet dataSet,
DataSetContentsEvent source)
Describes a change on the data set from an existing event.
|
DataSetContentsEvent(IlvDataSet dataSet,
int type,
int pointIndex)
Describes a change in a data point.
|
DataSetContentsEvent(IlvDataSet dataSet,
int type,
int firstIdx,
int lastIdx)
Describes a change in all the data points between the specified
indices.
|
DataSetPropertyEvent(IlvDataSet dataSet,
DataSetPropertyEvent source)
Describes a change on a property from an existing event.
|
DataSetPropertyEvent(IlvDataSet dataSet,
String propertyName,
Object oldValue,
Object newValue)
Describes a change of the specified property of the data set.
|
DataSourceEvent(IlvDataSource dataSource,
int type,
int firstIdx,
int lastIdx,
IlvDataSet[] oldDataSets)
Creates a new
DataSourceEvent . |
Modifier and Type | Method and Description |
---|---|
protected IlvChartRenderer |
IlvStairChartRenderer.createChild(IlvDataSet dataSet)
Creates an instance of
IlvSingleStairRenderer to
display the specified data set. |
protected IlvChartRenderer |
IlvScatterChartRenderer.createChild(IlvDataSet dataSet)
Creates an instance of
IlvSingleScatterRenderer to
display the specified data set. |
protected IlvChartRenderer |
IlvPolylineChartRenderer.createChild(IlvDataSet dataSet)
Creates an instance of
IlvSinglePolylineRenderer to
display the specified data set. |
protected IlvChartRenderer |
IlvPieChartRenderer.createChild(IlvDataSet dataSet)
Creates an instance of
IlvSinglePieRenderer to
display the specified data set. |
protected IlvChartRenderer |
IlvHiLoChartRenderer.createChild(IlvDataSet dataSet)
Creates an instance of
IlvSingleHiLoRenderer to
display the specified data set. |
protected abstract IlvChartRenderer |
IlvCompositeChartRenderer.createChild(IlvDataSet dataSet)
Creates a new child renderer to display the specified data set.
|
protected IlvChartRenderer |
IlvComboChartRenderer.createChild(IlvDataSet dataSet)
Creates a new child renderer to display the specified data set.
|
protected IlvChartRenderer |
IlvBubbleChartRenderer.createChild(IlvDataSet dataSet)
Creates an instance of
IlvSingleBubbleRenderer to
display the specified data set. |
protected IlvChartRenderer |
IlvBarChartRenderer.createChild(IlvDataSet dataSet)
Creates an instance of
IlvSingleBarRenderer to
display the specified data set. |
protected IlvChartRenderer |
IlvAreaChartRenderer.createChild(IlvDataSet dataSet)
Creates an instance of
IlvSingleAreaRenderer to
display the specified data set. |
protected void |
IlvSinglePieRenderer.dataSetsAdded(int firstIdx,
int lastIdx,
IlvDataSet[] oldDataSets)
Called when data sets are connected to this renderer.
|
protected void |
IlvSingleHiLoRenderer.dataSetsAdded(int firstIdx,
int lastIdx,
IlvDataSet[] oldDataSets)
Called when data sets are connected to this renderer.
|
protected void |
IlvSingleChartRenderer.dataSetsAdded(int firstIdx,
int lastIdx,
IlvDataSet[] oldDataSets)
Called when data sets are connected to this renderer.
|
protected void |
IlvSingleBubbleRenderer.dataSetsAdded(int firstIdx,
int lastIdx,
IlvDataSet[] oldDataSets)
Called when data sets are connected to this renderer.
|
protected void |
IlvSimpleCompositeChartRenderer.dataSetsAdded(int firstIdx,
int lastIdx,
IlvDataSet[] oldDataSets)
Called when new data sets are connected to this renderer.
|
protected void |
IlvPolylineChartRenderer.dataSetsAdded(int firstIdx,
int lastIdx,
IlvDataSet[] oldDataSets)
Called when data sets are connected to this renderer.
|
protected void |
IlvHiLoChartRenderer.dataSetsAdded(int firstIdx,
int lastIdx,
IlvDataSet[] oldDataSets)
Called when data sets are connected to this renderer.
|
protected void |
IlvComboChartRenderer.dataSetsAdded(int firstIdx,
int lastIdx,
IlvDataSet[] oldDataSets)
Called when data sets are connected to this renderer.
|
protected void |
IlvBubbleChartRenderer.dataSetsAdded(int firstIdx,
int lastIdx,
IlvDataSet[] oldDataSets)
Called when data sets are connected to this renderer.
|
protected void |
IlvBarChartRenderer.dataSetsAdded(int firstIdx,
int lastIdx,
IlvDataSet[] oldDataSets)
Called when data sets are connected to this renderer.
|
protected void |
IlvSinglePieRenderer.dataSetsRemoved(int firstIdx,
int lastIdx,
IlvDataSet[] oldDataSets)
Called when data sets are disconnected from this renderer.
|
protected void |
IlvSingleHiLoRenderer.dataSetsRemoved(int firstIdx,
int lastIdx,
IlvDataSet[] oldDataSets)
Called when data sets are disconnected from this renderer.
|
protected void |
IlvSingleChartRenderer.dataSetsRemoved(int firstIdx,
int lastIdx,
IlvDataSet[] oldDataSets)
Called when data sets are disconnected from this renderer.
|
protected void |
IlvSimpleCompositeChartRenderer.dataSetsRemoved(int firstIdx,
int lastIdx,
IlvDataSet[] oldDataSets)
Called when data sets are disconnected from this renderer.
|
protected void |
IlvPolylineChartRenderer.dataSetsRemoved(int firstIdx,
int lastIdx,
IlvDataSet[] oldDataSets)
Called when data sets are disconnected from this renderer.
|
protected void |
IlvHiLoChartRenderer.dataSetsRemoved(int firstIdx,
int lastIdx,
IlvDataSet[] oldDataSets)
Called when data sets are disconnected from this renderer.
|
protected void |
IlvComboChartRenderer.dataSetsRemoved(int firstIdx,
int lastIdx,
IlvDataSet[] oldDataSets)
Called when data sets are disconnected from this renderer.
|
protected void |
IlvBubbleChartRenderer.dataSetsRemoved(int firstIdx,
int lastIdx,
IlvDataSet[] oldDataSets)
Called when data sets are disconnected from this renderer.
|
protected void |
IlvBarChartRenderer.dataSetsRemoved(int firstIdx,
int lastIdx,
IlvDataSet[] oldDataSets)
Called when data sets are disconnected from this renderer.
|
void |
IlvSingleChartRenderer.draw(Graphics dst,
IlvDataSet dataSet,
int iMin,
int iMax)
Deprecated.
This method is not used by JViews.
|
void |
IlvSimpleChartRenderer.draw(Graphics g,
IlvDataSet dataSet,
int iMin,
int iMax)
Deprecated.
This method is not used by JViews.
|
void |
IlvCompositeChartRenderer.draw(Graphics dst,
IlvDataSet dataSet,
int iMin,
int iMax)
Deprecated.
This method is not used by JViews.
|
void |
IlvSingleChartRenderer.drawSelectionHandles(Graphics g,
IlvHandlesSelectionStyle style,
IlvDataSet dataSet)
Draws a data set with selection handles.
|
void |
IlvSinglePieRenderer.drawSelectionHandles(Graphics g,
IlvHandlesSelectionStyle style,
IlvDataSet dataSet,
int index)
Draws a data point with selection handles.
|
IlvDataAnnotation |
IlvTreemapChartRenderer.getAnnotation(IlvDataSet dataSet,
int idx)
This method always returns
null , because this renderer is associated
with the entire data source, not with a single data set. |
IlvDataAnnotation |
IlvSingleChartRenderer.getAnnotation(IlvDataSet dataSet,
int idx)
Returns the annotation of the specified data point.
|
IlvDataAnnotation |
IlvCompositeChartRenderer.getAnnotation(IlvDataSet dataSet,
int idx)
Returns the annotation of the specified data point.
|
IlvSingleBarRenderer |
IlvBarChartRenderer.getBar(IlvDataSet dataSet)
Returns the child bar renderer displaying the specified data set.
|
Rectangle2D |
IlvSingleHiLoRenderer.getBounds(IlvDataSet dataSet,
int iMin,
int iMax,
Rectangle2D bounds)
Returns the bounds of the graphical representation for the
specified data.
|
Rectangle2D |
IlvSingleHiLoRenderer.getBounds(IlvDataSet dataSet,
int iMin,
int iMax,
Rectangle2D bounds,
boolean includeAnnotations)
Returns the bounds of the graphical representation for the specified data.
|
Rectangle2D |
IlvSingleChartRenderer.getBounds(IlvDataSet dataSet,
int iMin,
int iMax,
Rectangle2D bounds,
boolean includeAnnotations)
Returns the bounds of the graphical representation for the specified data.
|
Rectangle2D |
IlvSingleBubbleRenderer.getBounds(IlvDataSet dataSet,
int iMin,
int iMax,
Rectangle2D bounds,
boolean includeAnnotations)
Returns the bounds of the graphical representation for the
specified data.
|
Rectangle2D |
IlvSimpleChartRenderer.getBounds(IlvDataSet dataSet,
int iMin,
int iMax,
Rectangle2D bounds,
boolean includeAnnotations)
Returns the bounds of the graphical representation for the
specified data.
|
Rectangle2D |
IlvCompositeChartRenderer.getBounds(IlvDataSet dataSet,
int iMin,
int iMax,
Rectangle2D bounds,
boolean includeAnnotations)
Returns the bounds of the graphical representation for the
specified data.
|
IlvSingleBubbleRenderer |
IlvBubbleChartRenderer.getBubble(IlvDataSet dataSet)
Returns the child bubble renderer displaying the specified data set.
|
IlvChartRenderer |
IlvCompositeChartRenderer.getChild(IlvDataSet dataSet)
Returns the child renderer that is used to display the specified data set.
|
IlvDisplayPoint |
IlvTreemapChartRenderer.getDisplayPoint(IlvDataSet dataSet,
int dataIdx)
This method is not supported by this renderer, because it does not
have the notion of a coordinate system.
|
IlvDisplayPoint |
IlvSingleChartRenderer.getDisplayPoint(IlvDataSet dataSet,
int dataIdx)
Returns the display point corresponding to the specified data point.
|
IlvDisplayPoint |
IlvCompositeChartRenderer.getDisplayPoint(IlvDataSet dataSet,
int dataIdx)
Returns the display point corresponding to the specified data point.
|
IlvSingleHiLoRenderer |
IlvHiLoChartRenderer.getHiLo(IlvDataSet dataSet)
Returns the child HiLo renderer displaying the specified data set.
|
IlvSinglePieRenderer |
IlvPieChartRenderer.getPie(IlvDataSet dataSet)
Returns the child pie renderer displaying the specified data set.
|
IlvSinglePolylineRenderer |
IlvPolylineChartRenderer.getPolyline(IlvDataSet dataSet)
Returns the child polyline renderer displaying the specified data set.
|
IlvDataRenderingHint |
IlvTreemapChartRenderer.getRenderingHint(IlvDataSet dataSet)
This method always returns
null , because this renderer is associated
with the entire data source, not with a single data set. |
IlvDataRenderingHint |
IlvSingleChartRenderer.getRenderingHint(IlvDataSet dataSet)
Returns the rendering hint that was specified globally for all the points
of the given data set.
|
IlvDataRenderingHint |
IlvCompositeChartRenderer.getRenderingHint(IlvDataSet dataSet)
Returns the rendering hint that was specified globally for all the points
of the given data set.
|
IlvDataRenderingHint |
IlvTreemapChartRenderer.getRenderingHint(IlvDataSet dataSet,
int idx)
This method always returns
null , because this renderer is associated
with the entire data source, not with a single data set. |
IlvDataRenderingHint |
IlvSingleChartRenderer.getRenderingHint(IlvDataSet dataSet,
int idx)
Returns the rendering hint of the specified data point.
|
IlvDataRenderingHint |
IlvCompositeChartRenderer.getRenderingHint(IlvDataSet dataSet,
int idx)
Returns the rendering hint of the specified data point.
|
IlvSingleScatterRenderer |
IlvScatterChartRenderer.getScatter(IlvDataSet dataSet)
Returns the child scatter renderer displaying the specified data set.
|
IlvChartRenderer |
IlvComboChartRenderer.getSingleChild(IlvDataSet dataSet)
Returns the child renderer that renders the specified data set.
|
IlvStyle |
IlvSingleChartRenderer.getStyle(IlvDataSet dataSet,
int index)
Returns the style used to display the specified data point.
|
IlvStyle |
IlvSimpleChartRenderer.getStyle(IlvDataSet dataSet,
int index)
This method is not supported by this renderer, because this renderer is
associated with the entire data source, not with a single data set.
|
IlvStyle |
IlvCompositeChartRenderer.getStyle(IlvDataSet dataSet,
int index)
Returns the style used to display the specified data point.
|
static int |
IlvComboChartRenderer.getType(IlvDataSet dataSet)
Returns the type of the graphical representation of the given data set.
|
void |
IlvTreemapChartRenderer.setAnnotation(IlvDataSet dataSet,
IlvDataAnnotation annotation)
This method is not supported by this renderer, because it is associated
with the entire data source, not with a single data set.
|
void |
IlvSingleChartRenderer.setAnnotation(IlvDataSet dataSet,
IlvDataAnnotation annotation)
Sets an annotation on all the data points of the specified data set.
|
void |
IlvCompositeChartRenderer.setAnnotation(IlvDataSet dataSet,
IlvDataAnnotation annotation)
Specifies an annotation for all the data points of a data set.
|
void |
IlvTreemapChartRenderer.setAnnotation(IlvDataSet dataSet,
int idx,
IlvDataAnnotation annotation)
This method is not supported by this renderer, because it is associated
with the entire data source, not with a single data set.
|
void |
IlvSingleChartRenderer.setAnnotation(IlvDataSet dataSet,
int idx,
IlvDataAnnotation annotation)
Sets an annotation on the specified data point.
|
void |
IlvCompositeChartRenderer.setAnnotation(IlvDataSet dataSet,
int idx,
IlvDataAnnotation annotation)
Specifies an annotation for a data point.
|
void |
IlvSingleChartRenderer.setDataPoint(IlvDataSet dataSet,
int dataIndex,
double xData,
double yData)
Changes the value of a data point.
|
void |
IlvCompositeChartRenderer.setDataPoint(IlvDataSet dataSet,
int dataIndex,
double xData,
double yData)
Changes the value of a data point.
|
void |
IlvTreemapChartRenderer.setDisplayPoint(IlvDataSet dataSet,
int dataIndex,
double xCoord,
double yCoord)
This method is not supported by this renderer, because it does not
have the notion of a coordinate system.
|
void |
IlvSingleChartRenderer.setDisplayPoint(IlvDataSet dataSet,
int dataIndex,
double xCoord,
double yCoord)
Changes the value of a data point according to the specified projected
coordinates.
|
void |
IlvCompositeChartRenderer.setDisplayPoint(IlvDataSet dataSet,
int dataIndex,
double xCoord,
double yCoord)
Changes the value of a data point according to the specified projected
coordinates.
|
void |
IlvTreemapChartRenderer.setRenderingHint(IlvDataSet dataSet,
IlvDataRenderingHint hint)
This method is not supported by this renderer, because it is associated
with the entire data source, not with a single data set.
|
void |
IlvSingleChartRenderer.setRenderingHint(IlvDataSet dataSet,
IlvDataRenderingHint hint)
Specifies a rendering hint for all the data points of a data set.
|
void |
IlvCompositeChartRenderer.setRenderingHint(IlvDataSet dataSet,
IlvDataRenderingHint hint)
Specifies a rendering hint for all the data points of a data set.
|
void |
IlvTreemapChartRenderer.setRenderingHint(IlvDataSet dataSet,
int idx,
IlvDataRenderingHint hint)
This method is not supported by this renderer, because it is associated
with the entire data source, not with a single data set.
|
void |
IlvSingleChartRenderer.setRenderingHint(IlvDataSet dataSet,
int idx,
IlvDataRenderingHint hint)
Specifies a rendering hint for a data point.
|
void |
IlvCompositeChartRenderer.setRenderingHint(IlvDataSet dataSet,
int idx,
IlvDataRenderingHint hint)
Specifies a rendering hint for a data point.
|
static void |
IlvComboChartRenderer.setType(IlvDataSet dataSet,
int type)
Sets the type of the graphical representation of the given data set.
|
Modifier and Type | Method and Description |
---|---|
IlvIMapAttributes |
IlvDefaultChartHitmapDefinition.getAttributes(IlvChart chart,
IlvSingleChartRenderer renderer,
IlvDataSet ds)
Returns the interactive effects attributes for a series of data points in the given data set.
|
abstract IlvIMapAttributes |
IlvChartHitmapDefinition.getAttributes(IlvChart chart,
IlvSingleChartRenderer renderer,
IlvDataSet ds)
Returns the interactive effects attributes for a series of data points in the given data set.
|
Constructor and Description |
---|
IlvDefaultChartToolTip(String title,
IlvDataSet dataSet)
Creates a tooltip with a given title and suitable for a given data set
as a whole.
|
IlvDefaultChartToolTip(String title,
IlvDataSet dataSet,
int idx)
Creates a tooltip with a given title and suitable for a given data point
in a data set.
|
IlvDefaultIMapDefinition(IlvDataSet[] dataSets,
IlvIMapAttributes[] attr)
Initializes a definition to generate areas for all the points of
the specified data sets.
|
IlvDefaultIMapDefinition(IlvDataSet[] dataSets,
IlvIMapAttributes[][] attr)
Initializes a definition to generate areas for all the points of
the specified data sets.
|
IlvDefaultIMapDefinition(IlvDataSet dataSet,
IlvIMapAttributes attr)
Initializes a definition to generate areas for all the points of
the specified data sets.
|
Modifier and Type | Class and Description |
---|---|
class |
IlvResourceDataSet
This class extends a chart data set and
represents a numerical attribute of all the
reservations assigned to a
resource versus time.
|
© Copyright Rogue Wave Software, Inc. 1997, 2018. All Rights Reserved.