first commit
This commit is contained in:
31
com/yahoo/astra/fl/charts/axes/AxisOrientation.as
Executable file
31
com/yahoo/astra/fl/charts/axes/AxisOrientation.as
Executable file
@ -0,0 +1,31 @@
|
||||
/*
|
||||
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
|
||||
{
|
||||
/**
|
||||
* Orientation values available to <code>IAxis</code> objects.
|
||||
*
|
||||
* @author Josh Tynjala
|
||||
*/
|
||||
public class AxisOrientation
|
||||
{
|
||||
|
||||
//--------------------------------------
|
||||
// Constants
|
||||
//--------------------------------------
|
||||
|
||||
/**
|
||||
* The AxisOrientation.VERTICAL constant specifies that a chart axis
|
||||
* should be displayed vertically.
|
||||
*/
|
||||
public static const VERTICAL:String = "vertical";
|
||||
|
||||
/**
|
||||
* The AxisOrientation.VERTICAL constant specifies that a chart axis
|
||||
* should be displayed horizontally.
|
||||
*/
|
||||
public static const HORIZONTAL:String = "horizontal";
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user