Name

dataseries

Synopsis

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

Description

A dataseries in a container for dataseries and datacolumn. dataseries can be nested.

Superclass Chain

node (LzNode) » view (LzView) » dataseries

Known Subclasses

Details

Properties (2)

enabled
<attribute name="enabled" value="true" />
public var enabled;
enable the dataseries
label
<attribute name="label" type="html" value="" />
public var label : html;
label of the dataseries

Methods (12)

addDataColumn()
<method name="addDataColumn" args="args" />
public function addDataColumn(args : object);
add a child datacolumn
addDataSeries()
<method name="addDataSeries" args="args" />
public function addDataSeries(args : object);
add a child datasereis
clearCache()
<method name="clearCache" />
public function clearCache();
clear the cache of datacolumns for the dataseries
getDataColumn()
<method name="getDataColumn" args="name" />
public function getDataColumn(name : string);
return a datacolumn
getDataSeries()
<method name="getDataSeries" args="index" />
public function getDataSeries(index : Number);
get the dataseries of the index
getDataSeriesLeafs()
<method name="getDataSeriesLeafs" />
public function getDataSeriesLeafs();
get an array of leaf node dataseries
getLegend()
<method name="getLegend" />
public function getLegend();
return xml data require for the legend
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.
getNumDataSeries()
<method name="getNumDataSeries" />
public function getNumDataSeries();
get the number of leaf node dataseries
getRootDataSeries()
<method name="getRootDataSeries" />
public function getRootDataSeries();
get the top level
removeDataColumn()
<method name="removeDataColumn" args="child" />
public function removeDataColumn(child : object);
remove child datacolumn
removeDataSeries()
<method name="removeDataSeries" args="child" />
public function removeDataSeries(child : object);
remove child dataseries

LZX Synopsis

<class name="dataseries" extends=" LzView ">
  <attribute name=" enabled " value="true" />
  <attribute name=" label " type="html" value="" />
  <method name=" addDataColumn " args="args" />
  <method name=" addDataSeries " args="args" />
  <method name=" clearCache " />
  <method name=" getDataColumn " args="name" />
  <method name=" getDataSeries " args="index" />
  <method name=" getDataSeriesLeafs " />
  <method name=" getLegend " />
  <method name=" getNestedAttribute " args="attName" />
  <method name=" getNumDataSeries " />
  <method name=" getRootDataSeries " />
  <method name=" removeDataColumn " args="child" />
  <method name=" removeDataSeries " args="child" />
</class>

JavaScript Synopsis

public dataseries extends  LzView  {
  public var enabled ;
  public var label  : html;
  prototype public function addDataColumn (args : object);
  prototype public function addDataSeries (args : object);
  prototype public function clearCache ();
  prototype public function getDataColumn (name : string);
  prototype public function getDataSeries (index : Number);
  prototype public function getDataSeriesLeafs ();
  prototype public function getLegend ();
  prototype public function getNestedAttribute (attName : String);
  prototype public function getNumDataSeries ();
  prototype public function getRootDataSeries ();
  prototype public function removeDataColumn (child : object);
  prototype public function removeDataSeries (child : object);
}