Name

virtualdrawview

Synopsis

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

Superclass Chain

virtualdrawview

Known Subclasses

Details

Methods (9)

clear()
<method name="clear" />
public function clear();
lineTo()
<method name="lineTo" args="x, y" />
public function lineTo(x, y);
lineTo in virtual coordinate
moveTo()
<method name="moveTo" args="x, y" />
public function moveTo(x, y);
moveTo in virtual coordinate
quadraticCurveTo()
<method name="quadraticCurveTo" args="cx, cy, x, y" />
public function quadraticCurveTo(cx, cy, x, y);
quadriaticCurveTo in virtual coordinate
setDataBound()
<method name="setDataBound" args="minx, miny, maxx, maxy" />
public function setDataBound(minx : Number, miny : Number, maxx : Number, maxy : Number);
set boundary for the virtual coordinate
toDeviceX()
<method name="toDeviceX" args="x" />
public function toDeviceX(x : Number) : Number;
virtual coordinate to physical coordinate for x
toDeviceY()
<method name="toDeviceY" args="y" />
public function toDeviceY(y : Number) : Number;
virtual coordinate to physical coordinate for y
toVirtualX()
<method name="toVirtualX" args="x" />
public function toVirtualX(x : Number) : Number;
physical coordinate to virtual coordinate for x
toVirtualY()
<method name="toVirtualY" args="y" />
public function toVirtualY(y : Number) : Number;
physical coordinate to virtual coordinate for y

LZX Synopsis

<class name="virtualdrawview">
  <method name=" clear " />
  <method name=" lineTo " args="x, y" />
  <method name=" moveTo " args="x, y" />
  <method name=" quadraticCurveTo " args="cx, cy, x, y" />
  <method name=" setDataBound " args="minx, miny, maxx, maxy" />
  <method name=" toDeviceX " args="x" />
  <method name=" toDeviceY " args="y" />
  <method name=" toVirtualX " args="x" />
  <method name=" toVirtualY " args="y" />
</class>

JavaScript Synopsis

public virtualdrawview {
  prototype public function clear ();
  prototype public function lineTo (x, y);
  prototype public function moveTo (x, y);
  prototype public function quadraticCurveTo (cx, cy, x, y);
  prototype public function setDataBound (minx : Number, miny : Number, maxx : Number, maxy : Number);
  prototype public function toDeviceX (x : Number) : Number;
  prototype public function toDeviceY (y : Number) : Number;
  prototype public function toVirtualX (x : Number) : Number;
  prototype public function toVirtualY (y : Number) : Number;
}