1package com.yahoo.astra.fl.charts.axes
2{
3	/**
4	 * Scale types available to <code>IAxis</code> objects.
5	 *
6	 * @author Josh Tynjala
7	 */
8	public class ScaleType
9	{
10
11	//--------------------------------------
12	//  Constants
13	//--------------------------------------
14
15		/**
16		 * The ScaleType.LINEAR constant specifies that chart axis objects
17		 * should be displayed on a linear scale.
18		 */
19		public static const LINEAR:String = "linear";
20
21		/**
22		 * The ScaleType.LOGARITHMIC constant specifies that chart axis objects
23		 * should be displayed on a logarithmic scale.
24		 */
25		public static const LOGARITHMIC:String = "logarithmic";
26	}
27}
28