33 lines
743 B
ActionScript
Executable File
33 lines
743 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.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;
|
|
}
|
|
} |