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

📄 idatatiprenderer.as

📁 拓扑图基于SNMP数据采集模块的设计和实现
💻 AS
字号:
package com.yahoo.astra.fl.charts{	import flash.events.IEventDispatcher;		/**	 * A renderer for a mouse-over datatip on a chart.	 * 	 * <p>Important: Must be a subclass of <code>DisplayObject</code></p>	 * 	 * @see flash.display.DisplayObject	 * @author Josh Tynjala	 */	public interface IDataTipRenderer extends IEventDispatcher	{			//--------------------------------------	//  Properties	//--------------------------------------			/**		 * The text that appears in the data tip's label.		 */		function get text():String;				/**		 * @private		 */		function set text(value:String):void;				/**		 * The data for the item that this data tip represents.		 * Custom implementations of <code>IDataTipRenderer</code>		 * may use this property to render additional information for		 * the user.		 */		function get data():Object;				/**		 * @private		 */		function set data(value:Object):void;	}}

⌨️ 快捷键说明

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