Name

datacolumn — a series of data

Synopsis

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

Description

[Warning] Warning
This component is of Beta quality and is subject to change.
datacolumn contain a list of values of a series. List of values typically are data for x series, y series, tooltip series and datalabel series.

Superclass Chain

node (LzNode) » view (LzView) » datacolumn

Known Subclasses

Details

Properties (5)

columndatapath
<attribute name="columndatapath" type="string" value="" />
public var columndatapath : String;
the name of the column in the datapath for the series
datadone
<attribute name="datadone" type="boolean" value="false" />
public var datadone : Boolean;
true when data had been loaded at least once
datatype
<attribute name="datatype" type="string" value="string" />
public var datatype : String;
type of data: string or number
labeldatapath
<attribute name="labeldatapath" type="string" value="" />
public var labeldatapath : String;
the name of the label in the datapath for the series
values
<attribute name="values" value="$once{null}" />
public var values;
array of data representing the series values

Methods (7)

clearCache()
<method name="clearCache" />
public function clearCache();
clear the cache
getDataPath()
<method name="getDataPath" />
public function getDataPath();
getMax()
<method name="getMax" />
public function getMax();
get the max value of the columns for the series
getMin()
<method name="getMin" />
public function getMin();
get the min value of the columns for the series
getNestedAttribute()
<method name="getNestedAttribute" args="attName" />
public function getNestedAttribute(attName : String);
get a attribute that is of the current class or inherited from the parent.
getRootDataSeries()
<method name="getRootDataSeries" />
public function getRootDataSeries();
processData()
<method name="processData" args="value" />
public function processData(value);
method to preprocess the data

LZX Synopsis

<class name="datacolumn" extends=" LzView ">
  <attribute name=" columndatapath " type="string" value="" />
  <attribute name=" datadone " type="boolean" value="false" />
  <attribute name=" datatype " type="string" value="string" />
  <attribute name=" labeldatapath " type="string" value="" />
  <attribute name=" values " value="$once{null}" />
  <method name=" clearCache " />
  <method name=" getDataPath " />
  <method name=" getMax " />
  <method name=" getMin " />
  <method name=" getNestedAttribute " args="attName" />
  <method name=" getRootDataSeries " />
  <method name=" processData " args="value" />
</class>

JavaScript Synopsis

public datacolumn extends  LzView  {
  public var columndatapath  : String;
  public var datadone  : Boolean;
  public var datatype  : String;
  public var labeldatapath  : String;
  public var values ;
  prototype public function clearCache ();
  prototype public function getDataPath ();
  prototype public function getMax ();
  prototype public function getMin ();
  prototype public function getNestedAttribute (attName : String);
  prototype public function getRootDataSeries ();
  prototype public function processData (value);
}