加载中...

更改文本


调试运行

<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <title>图形展示</title>
</head>
<body>
 
<div class="detail-section">
    <div id="canvas">
 
    </div>
</div>
 
<script src="http://g.tbcdn.cn/bui/acharts/1.0.32/acharts-min.js"></script>
<!-- https://g.alicdn.com/bui/acharts/1.0.29/acharts-min.js -->
 
 
 
  <script type="text/javascript">
      var chart = new AChart({
 
        theme : AChart.Theme.SmoothBase,
        id : 'canvas',
        width : 950,
        height : 500,
        plotCfg : {
          margin : [50,50,100]
 
        },
        xAxis : {
          type : 'circle',
          line : null,
          ticks : ['勇气','智慧','力量','政治','潜力','魅力']
        },
        yAxis : {
          title : null,
          type : 'radius',
          grid : {
            type : 'polygon' //圆形栅格,可以改成
          },
          labels : {
            label : {
              x : -12
            }
          },
          min : 0
        },
 
        series: [
          {
              name : '张三',
              type: 'line',
              data: [8, 7, 6, 5, 4, 3]
          }
          ]
      });
 
      chart.render();
  </script>
 
</body>
</html>

还没有评论.