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

📄 legenditemdata.as

📁 拓扑图基于SNMP数据采集模块的设计和实现
💻 AS
字号:
package com.yahoo.astra.fl.charts.legend{	import flash.display.Shape;		/**	 * @author Josh Tynjala	 */	public class LegendItemData	{			//--------------------------------------	//  Constructor	//--------------------------------------			/**		 * Constructor.		 * 		 * @param label			The text to display on the LegendItem.		 * @param markerSkin	The skin to use with the marker on the LegendItem.		 * @param fillColor		The base color (possibly) used by the marker.		 */		public function LegendItemData(label:String = "", markerSkin:Object = null, fillColor:uint = 0x000000)		{			this.label = label;			this.markerSkin = markerSkin ? markerSkin : Shape;			this.fillColor = fillColor;		}			//--------------------------------------	//  Properties	//--------------------------------------			/**		 * The text to display on the LegendItem.		 */		public var label:String;				/**		 * The skin to use for the marker on the LegendItem.		 */		public var markerSkin:Object;				/**		 * The base color (possibly) used by the marker.		 */		public var fillColor:uint;	}	}

⌨️ 快捷键说明

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