加载中...

折线图


调试运行

<!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',
          tickInterval : 45
        },
        yAxis : {
          title : null,
          type : 'radius',
          grid : {
            type : 'circle' //圆形栅格,可以改成polygon
          },
          labels : {
            label : {
              x : -12
            }
          },
          min : 0
        },
 
        series: [
          {
              name : 'line1',
              type: 'line',
              data: [8, 7, 6, 5, 4, 3, 2, 0]
          }
          ]
      });
 
      chart.render();
  </script>
 
</body>
</html>

还没有评论.