first commit
This commit is contained in:
30
com/yahoo/astra/fl/charts/ICategoryChart.as
Executable file
30
com/yahoo/astra/fl/charts/ICategoryChart.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
|
||||
{
|
||||
/**
|
||||
* A type of chart that displays its data in categories.
|
||||
*
|
||||
* @author Josh Tynjala
|
||||
*/
|
||||
public interface ICategoryChart
|
||||
{
|
||||
|
||||
//--------------------------------------
|
||||
// Properties
|
||||
//--------------------------------------
|
||||
|
||||
/**
|
||||
* The names of the categories displayed on the category axis. If the
|
||||
* chart does not have a category axis, this value will be ignored.
|
||||
*/
|
||||
function get categoryNames():Array
|
||||
|
||||
/**
|
||||
* @private
|
||||
*/
|
||||
function set categoryNames(value:Array):void
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user