tickposition.as

来自「拓扑图基于SNMP数据采集模块的设计和实现」· AS 代码 · 共 34 行

AS
34
字号
package com.yahoo.astra.fl.charts.axes{	/**	 * Position values available to axis ticks.	 * 	 * @author Josh Tynjala	 */	public class TickPosition	{			//--------------------------------------	//  Constants	//--------------------------------------			/**		 * The TickPosition.OUTSIDE constant specifies that chart axis ticks		 * should be displayed on the outside of the axis.		 */		public static const OUTSIDE:String = "outside";				/**		 * The TickPosition.INSIDE constant specifies display of chart axis		 * ticks should be displayed on the inside of the axis.		 */		public static const INSIDE:String = "inside";				/**		 * The TickPosition.CROSS constant specifies display of chart axis ticks		 * should be displayed crossing the axis.		 */		public static const CROSS:String = "cross";	}}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?