Name

valuepoints — a group of values in a chart

Synopsis

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

Description

[Warning] Warning
This component is of Beta quality and is subject to change.
Represents a value point in the chart

Superclass Chain

node (LzNode) » view (LzView) » valuepoints

Known Subclasses

Details

Properties (4)

datax
<attribute name="datax" type="expression" />
public var datax : Object;
the x point will be draw
datay
<attribute name="datay" type="expression" />
public var datay : Object;
the y point 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

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

JavaScript Synopsis

public valuepoints extends  LzView  {
  public var datax  : Object;
  public var datay  : Object;
  public var label  : String;
  public var tip  : String;
  prototype public function processData (pLabel : string);
}