Name

valueregion — a region of values in a chart

Synopsis

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

Description

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

Superclass Chain

valueregion

Known Subclasses

Details

Properties (7)

axis
<attribute name="axis" type="string" />
public var axis : String;
the associated axis to the Region can be"x" or "y"
data1
<attribute name="data1" type="string" value="" />
public var data1 : String;
Minimum value for the Value region
data2
<attribute name="data2" type="string" value="" />
public var data2 : String;
Maximum value for the Value region
label
<attribute name="label" type="string" value="" />
public var label : String;
label of the value region, it is shown next to the region
regionEnabled
<attribute name="regionEnabled" value="true" />
public var regionEnabled;
enable the rendering of the value region in the chart
tip
<attribute name="tip" type="string" value="" />
public var tip : String;
Tip label that appear when the mouse is over the value region
tipEnabled
<attribute name="tipEnabled" type="boolean" value="true" />
public var tipEnabled : Boolean;
enable the value region's tooltip

LZX Synopsis

<class name="valueregion">
  <attribute name=" axis " type="string" />
  <attribute name=" data1 " type="string" value="" />
  <attribute name=" data2 " type="string" value="" />
  <attribute name=" label " type="string" value="" />
  <attribute name=" regionEnabled " value="true" />
  <attribute name=" tip " type="string" value="" />
  <attribute name=" tipEnabled " type="boolean" value="true" />
</class>

JavaScript Synopsis

public valueregion {
  public var axis  : String;
  public var data1  : String;
  public var data2  : String;
  public var label  : String;
  public var regionEnabled ;
  public var tip  : String;
  public var tipEnabled  : Boolean;
}