iaxisrenderer.as

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

AS
46
字号
package com.yahoo.astra.fl.charts.axes{		/**	 * A visual representation of an IAxis instance.	 * 	 * Should be a subclass of UIComponent.	 * 	 * @author Josh Tynjala	 */	public interface IAxisRenderer	{			//--------------------------------------	//  Properties	//--------------------------------------			/**		 * The total length of the axis renderer, in pixels.		 */		function get length():Number;				/**		 * An Array of AxisData objects specifying the positions of the ticks.		 * 		 * @see AxisData		 */		function get ticks():Array;				/**		 * @private		 */		function set ticks(value:Array):void;				/**		 * An Array of AxisData objects specifying the positions of the minor ticks.		 * 		 * @see AxisData		 */		function get minorTicks():Array				/**		 * @private		 */		function set minorTicks(value:Array):void;	}}

⌨️ 快捷键说明

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