public class IlvDataIndicator extends IlvChartDecoration
An IlvDataIndicator
can be used to represent different types of data values, each one with its
own graphical representation. Here is the possible type of values that can be
marked :
And here are two pictures showing the graphical representations associated with the different types of data values, for a Cartesian chart and a radar chart:
ilvDataIndicator {
class : "ilog.views.chart.graphic.IlvDataIndicator(axisIndex,dataWindow,text)";
axisIndex : "2";
dataWindow : "@#ilvDataWindow";
drawOrder : "2";
labelRenderer : "@#ilvLabelRenderer";
range : "@#ilvDataInterval";
style : "@#ilvStyle";
text : "<value>";
value : "3.0";
visible : "false";
}
Modifier and Type | Property and Description |
---|---|
int |
axisIndex
Sets the index of the axis to which this indicator is attached. |
java.lang.String |
class
Creates an indicator for the specified data window with the specified text. |
IlvDataWindow |
dataWindow
Modifies the data window displayed by this indicator. |
int |
drawOrder
Sets the drawing order of this decoration. |
IlvLabelRenderer |
labelRenderer
Sets the renderer of the text displayed by this indicator. |
IlvDataInterval |
range
Sets the range displayed by this indicator. |
IlvStyle |
style
Specifies the rendering style of this indicator. |
java.lang.String |
text
Sets the text associated with this indicator. |
double |
value
Sets the value displayed by the indicator. |
boolean |
visible
Toggles the visibility of this decoration. |
public java.lang.String class
WINDOW
.
class : "ilog.views.chart.graphic.IlvDataIndicator(axisIndex,dataWindow,text)";
public int axisIndex
axisIndex : "2";
public IlvDataWindow dataWindow
WINDOW
.
dataWindow : "@#ilvDataWindow";
IlvDataWindow
for an example of implementing a dataWindow.public int drawOrder
drawOrder : "2";
public IlvLabelRenderer labelRenderer
labelRenderer : "@#ilvLabelRenderer";
IlvLabelRenderer
for an example of implementing a labelRenderer.public IlvDataInterval range
X_RANGE
or Y_RANGE
.
range : "@#ilvDataInterval";
IlvDataInterval
for an example of implementing a range.public IlvStyle style
style : "@#ilvStyle";
IlvStyle
for an example of implementing a style.public java.lang.String text
X_VALUE
or Y_VALUE
types, or
with the stroke color of the drawing style in the other cases.
text : "<value>";
public double value
X_VALUE
or Y_VALUE
.
value : "3.0";
public boolean visible
visible : "false";
© Copyright 2024 Rogue Wave Software, Inc., a Perforce company.. All Rights Reserved.