axisdata.as

来自「拓扑图基于SNMP数据采集模块的设计和实现」· AS 代码 · 共 47 行

AS
47
字号
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 + =
减小字号Ctrl + -
显示快捷键?