⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 icartesianaxisrenderer.as

📁 拓扑图基于SNMP数据采集模块的设计和实现
💻 AS
字号:
package com.yahoo.astra.fl.charts.axes{	import flash.geom.Rectangle;		/**	 * Interface for a cartesian chart's axis renderers.	 * 	 * @see com.yahoo.astra.fl.charts.CartesianChart	 */	public interface ICartesianAxisRenderer extends IAxisRenderer	{			//--------------------------------------	//  Properties	//--------------------------------------			/**		 * Determines if the axis is displayed vertically or horizontally.		 * 		 * @see com.yahoo.astra.fl.charts.axes.AxisOrientation		 */		function get orientation():String;				/**		 * @private		 */		function set orientation(value:String):void;				/**		 * The title text to display on the axis.		 */		function get title():String;				/**		 * @private		 */		function set title(value:String):void;				/**		 * Represents the area where content should be drawn within the axis.		 * This value is used to determine the containing chart's own		 * <code>contentBounds</code> property.		 */		function get contentBounds():Rectangle;			//--------------------------------------	//  Methods	//--------------------------------------			/**		 * Calculates the <code>contentBounds</code> value for the axis renderer.		 * Seperating this function from the draw method optimizes processing time,		 * and it allows the chart to synchronize its axes.		 */		function updateBounds():void;	}}

⌨️ 快捷键说明

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