📄 iaxisrenderer.as
字号:
package com.yahoo.astra.fl.charts.axes{ /** * A visual representation of an IAxis instance. * * Should be a subclass of UIComponent. * * @author Josh Tynjala */ public interface IAxisRenderer { //-------------------------------------- // Properties //-------------------------------------- /** * The total length of the axis renderer, in pixels. */ function get length():Number; /** * An Array of AxisData objects specifying the positions of the ticks. * * @see AxisData */ function get ticks():Array; /** * @private */ function set ticks(value:Array):void; /** * An Array of AxisData objects specifying the positions of the minor ticks. * * @see AxisData */ function get minorTicks():Array /** * @private */ function set minorTicks(value:Array):void; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -