📄 tickposition.as
字号:
package com.yahoo.astra.fl.charts.axes{ /** * Position values available to axis ticks. * * @author Josh Tynjala */ public class TickPosition { //-------------------------------------- // Constants //-------------------------------------- /** * The TickPosition.OUTSIDE constant specifies that chart axis ticks * should be displayed on the outside of the axis. */ public static const OUTSIDE:String = "outside"; /** * The TickPosition.INSIDE constant specifies display of chart axis * ticks should be displayed on the inside of the axis. */ public static const INSIDE:String = "inside"; /** * The TickPosition.CROSS constant specifies display of chart axis ticks * should be displayed crossing the axis. */ public static const CROSS:String = "cross"; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -