/**
 * 该模块是用于数据的统计图的展示,包含了折线图、雷达图、饼图、柱状图<br>
 *  <strong>
 *          页面需要导入的文件
 *          <ul>
 *              <li>cmp-chart.js</li>
 *          </ul>
 *      </strong>
 * @module Chart
 * @subtitle 统计图模块
 */

/**
 * 统计图
 * @namespace cmp
 * @class chart
 * @constructor
 * @demo cmp-chart.html
 * @show true
 * @param {string} container 绘制统计图的容器,可以接受以id或class名查询到的容器,格式如:"#id"或".class"
 * @param {object} data 统计图数据
 * @returns {Object} 统计图对象
 */
    
Top