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

📄 axisdata.as

📁 拓扑图基于SNMP数据采集模块的设计和实现
💻 AS
字号:
package com.yahoo.astra.fl.charts.axes{	/**	 * Positioning and other data used by an IAxisRenderer to draw	 * items like ticks. This data is created by an IAxis instance.	 * 	 * @author Josh Tynjala	 * @see IAxis	 * @see IAxisRenderer	 */	public class AxisData	{			//--------------------------------------	//  Constructor	//--------------------------------------				/**		 * Constructor.		 */		public function AxisData(position:Number, value:Object, label:String)		{			this.position = position;			this.value = value;			this.label = label;		}	//--------------------------------------	//  Properties	//--------------------------------------			/**		 * The position of the item on the axis renderer.		 */		public var position:Number;				/**		 * The value of the item.		 */		public var value:Object;				/**		 * The label value of the item.		 */		public var label:String;	}}

⌨️ 快捷键说明

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