Description
Represents a line in the chart
Superclass Chain
valueline
Details
Properties (5)
-
axis
-
<attribute name="axis" type="string" />
public var axis : String;
the axis value could be "x" or "y"
-
data
-
<attribute name="data" type="string" value="" />
public var data : String;
-
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
-
tipEnable
-
<attribute name="tipEnable" type="boolean" value="null" />
public var tipEnable : Boolean;
Methods (1)
-
processData()
-
<method name="processData" args="pLabel" />
public function processData(pLabel : string);
Method for extensible label rendering
LZX Synopsis
<class name="
valueline">
<attribute name="
axis
" type="
string" />
<attribute name="
data
" type="
string" value="
" />
<attribute name="
label
" type="
string" value="
" />
<attribute name="
tip
" type="
string" value="
" />
<attribute name="
tipEnable
" type="
boolean" value="
null" />
</class>
JavaScript Synopsis
public
valueline {
public var
axis
:
String;
public var
data
:
String;
public var
label
:
String;
prototype public function
processData
(
pLabel : string);
}