📄 iaxis.as
字号:
package com.yahoo.astra.fl.charts.axes{ import com.yahoo.astra.fl.charts.IChart; /** * Data-only representation of a chart's axis. * * @author Josh Tynjala */ public interface IAxis { /** * The chart in which this axis appears. */ function get chart():IChart; /** * @private */ function set chart(value:IChart):void; /** * The visual renderer associated with this axis. */ function get renderer():IAxisRenderer; /** * @private */ function set renderer(value:IAxisRenderer):void; /** * Sets the direction of the labels and other visual objects along the axis. * By default, vertical axes draw objects from bottom to top, and horizontal * axes draw objects from left to right. */ function get reverse():Boolean; /** * @private */ function set reverse(value:Boolean):void; /** * The text that will appear next to the axis to indicate information * about the data that it displays. */ function get title():String; /** * @private */ function set title(value:String):void; /** * A function may be set to determine the text value of the labels. * * <pre>function labelFunction(value:Object):String</pre> */ function get labelFunction():Function; /** * @private */ function set labelFunction(value:Function):void /** * Determines the axis scale based on the input data set. * Seperating this function from the draw method optimizes processing time, * and it allows the chart to synchronize its axes. * * @param data The complete dataset that could be drawn on the axis. */ function updateScale(data:Array):void; /** * Calculates the position of a data point along the axis. * * @param value The data used to determine the position * @return The display position in pixels on the axis */ function valueToLocal(value:Object):Number; /** * Converts a value on the axis to formatted label text. * * @param value the value of the item for which a label is needed * @return the formatted label text */ function valueToLabel(value:Object):String; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -