first commit
This commit is contained in:
32
com/yahoo/astra/fl/charts/StackedBarChart.as
Executable file
32
com/yahoo/astra/fl/charts/StackedBarChart.as
Executable file
@ -0,0 +1,32 @@
|
||||
/*
|
||||
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
|
||||
{
|
||||
import com.yahoo.astra.fl.charts.series.StackedBarSeries;
|
||||
|
||||
/**
|
||||
* A chart that displays its data points with horizontal bars
|
||||
* that are stacked horizontally.
|
||||
*
|
||||
* @author Josh Tynjala
|
||||
*/
|
||||
public class StackedBarChart extends BarChart
|
||||
{
|
||||
|
||||
//--------------------------------------
|
||||
// Constructor
|
||||
//--------------------------------------
|
||||
|
||||
/**
|
||||
* Constructor.
|
||||
*/
|
||||
public function StackedBarChart()
|
||||
{
|
||||
super();
|
||||
this.defaultSeriesType = StackedBarSeries;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user