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

📄 istackingaxis.as

📁 拓扑图基于SNMP数据采集模块的设计和实现
💻 AS
字号:
package com.yahoo.astra.fl.charts.axes{	import com.yahoo.astra.fl.charts.series.IStackedSeries;		/**	 * A type of axis that allows values to be stacked.	 * 	 * @author Josh Tynjala	 */	public interface IStackingAxis extends IAxis	{			//--------------------------------------	//  Properties	//--------------------------------------				/**		 * If true, the axis will allow the stacking of series that implement		 * the interface IStackedSeries.		 * 		 * <p>Must be explicitly enabled.		 * 		 * @see com.yahoo.astra.fl.charts.series.IStackedSeries		 */		function get stackingEnabled():Boolean;				/**		 * @private		 */		function set stackingEnabled(value:Boolean):void;			//--------------------------------------	//  Methods	//--------------------------------------			/**		 * Calculates the sum of values if they were stacked on the axis.		 * The first value is important because some axis types, such as		 * NumericAxis, may differentiate between positive and negative values.		 * 		 * @see NumericAxis		 */		function stack(top:Object, ...rest:Array):Object;	}}

⌨️ 快捷键说明

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