first commit
This commit is contained in:
33
com/yahoo/astra/fl/charts/legend/ILegend.as
Executable file
33
com/yahoo/astra/fl/charts/legend/ILegend.as
Executable file
@ -0,0 +1,33 @@
|
||||
/*
|
||||
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.legend
|
||||
{
|
||||
/**
|
||||
* Properties required by a chart's legend.
|
||||
*
|
||||
* @see com.yahoo.astra.fl.charts.Chart
|
||||
*
|
||||
* @author Josh Tynjala
|
||||
*/
|
||||
public interface ILegend
|
||||
{
|
||||
|
||||
//--------------------------------------
|
||||
// Properties
|
||||
//--------------------------------------
|
||||
|
||||
/**
|
||||
* An Array of LegendItemData objects.
|
||||
*
|
||||
* @see com.yahoo.astra.fl.charts.legend.LegendItemData
|
||||
*/
|
||||
function get dataProvider():Array
|
||||
|
||||
/**
|
||||
* @private
|
||||
*/
|
||||
function set dataProvider(value:Array):void;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user