Version 3.18.1

APIs

  • Begin typing in the search box above to see results.
Show:

File: charts/js/Chart.js

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

AltStyle によって変換されたページ (->オリジナル) /