Name
valuepoints —
a group of values in a chart
Description
|
Warning |
This component is of Beta quality and is subject to change. |
Represents a value point in the chart
Details
Properties (4)
-
datax
-
<attribute name="datax" type="expression" />
public var datax : Object;
-
datay
-
<attribute name="datay" type="expression" />
public var datay : Object;
-
label
-
<attribute name="label" type="string" value="" />
public var label : String;
the label will be display next to the line
-
tip
-
<attribute name="tip" type="string" value="" />
the tooltip value will be display when the mouse over the line
Methods (1)
-
processData()
-
<method name="processData" args="pLabel" />
public function processData(pLabel : string);
Method for extensible label rendering
LZX Synopsis
<class name="
valuepoints" extends="
LzView
">
<attribute name="
datax
" type="
expression" />
<attribute name="
datay
" type="
expression" />
<attribute name="
label
" type="
string" value="
" />
<attribute name="
tip
" type="
string" value="
" />
</class>
JavaScript Synopsis
public
valuepoints extends
LzView
{
public var
datax
:
Object;
public var
datay
:
Object;
public var
label
:
String;
prototype public function
processData
(
pLabel : string);
}