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

📄 iseriesitemrenderer.as

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

⌨️ 快捷键说明

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