File: charts/js/Chart.js
/** * The Chart class is the basic application used to create a chart. * * @module charts * @class Chart * @constructor */ function Chart(cfg) { if(cfg.type != "pie") { return new Y.CartesianChart(cfg); } else { return new Y.PieChart(cfg); } } Y.Chart = Chart;