Name

valueline

Synopsis

LZX: valueline
JavaScript: valueline
Type: Class
Access: public
Topic: Charting And Graphing.Common
Declared in: lps/components/charts/common/valueline.lzx

Description

Represents a line in the chart

Superclass Chain

valueline

Known Subclasses

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;
the value will be draw
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="" />
public var tip : String;
the tooltip value will be display when the mouse over the line
tipEnable
<attribute name="tipEnable" type="boolean" value="null" />
public var tipEnable : Boolean;
enable tooltip for data

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" />
  <method name=" processData " args="pLabel" />
</class>

JavaScript Synopsis

public valueline {
  public var axis  : String;
  public var data  : String;
  public var label  : String;
  public var tip  : String;
  public var tipEnable  : Boolean;
  prototype public function processData (pLabel : string);
}