first commit
This commit is contained in:
30
com/yahoo/astra/fl/charts/axes/IGridLinesRenderer.as
Executable file
30
com/yahoo/astra/fl/charts/axes/IGridLinesRenderer.as
Executable file
@ -0,0 +1,30 @@
|
||||
/*
|
||||
Copyright (c) 2009 Yahoo! Inc. All rights reserved.
|
||||
The copyrights embodied in the content of this file are licensed under the BSD (revised) open source license
|
||||
*/
|
||||
package com.yahoo.astra.fl.charts.axes
|
||||
{
|
||||
/**
|
||||
* A renderer for grid lines appearing on a chart's axis.
|
||||
*
|
||||
* @author Josh Tynjala
|
||||
*/
|
||||
public interface IGridLinesRenderer
|
||||
{
|
||||
|
||||
//--------------------------------------
|
||||
// Properties
|
||||
//--------------------------------------
|
||||
|
||||
/**
|
||||
* The axis renderer from which the grid lines receive their
|
||||
* major and minor unit data.
|
||||
*/
|
||||
function get axisRenderer():IAxisRenderer;
|
||||
|
||||
/**
|
||||
* @private
|
||||
*/
|
||||
function set axisRenderer(value:IAxisRenderer):void;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user