first commit

This commit is contained in:
2020-10-20 00:58:15 +02:00
commit 7f1b9bfca5
222 changed files with 56918 additions and 0 deletions

View File

@ -0,0 +1,31 @@
/*
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.ColumnSeries;
/**
* A chart that displays its data points with vertical columns.
*
* @author Josh Tynjala
*/
public class ColumnChart extends CartesianChart
{
//--------------------------------------
// Constructor
//--------------------------------------
/**
* Constructor.
*/
public function ColumnChart()
{
super();
this.defaultSeriesType = ColumnSeries;
}
}
}