30 lines
724 B
ActionScript
Executable File
30 lines
724 B
ActionScript
Executable File
/*
|
|
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;
|
|
}
|
|
} |