first commit
This commit is contained in:
26
com/yahoo/astra/fl/charts/axes/IOriginAxis.as
Executable file
26
com/yahoo/astra/fl/charts/axes/IOriginAxis.as
Executable file
@ -0,0 +1,26 @@
|
||||
/*
|
||||
Copyright (c) 2009 Yahoo! Inc. All rights reserved.
|
||||
The copyrights embodied in the content of this file are licensed under the BSD (revised) open source license
|
||||
*/
|
||||
package com.yahoo.astra.fl.charts.axes
|
||||
{
|
||||
/**
|
||||
* An axis with an origin.
|
||||
*
|
||||
* @author Josh Tynjala
|
||||
*/
|
||||
public interface IOriginAxis extends IAxis
|
||||
{
|
||||
/**
|
||||
* Returns the value of the origin. This is not the position of the
|
||||
* origin. To get the origin's position, pass the origin value to
|
||||
* valueToLocal().
|
||||
*
|
||||
* Note: This value may not be the true origin value. It may be a
|
||||
* minimum or maximum value if the actual origin is not visible.
|
||||
*
|
||||
* @see IAxis#valueToLocal()
|
||||
*/
|
||||
function get origin():Object;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user