码迷,mamicode.com
首页 > Web开发 > 详细

前端canvasjs图表制作

时间:2017-09-26 22:32:25      阅读:258      评论:0      收藏:0      [点我收藏+]

标签:poi   chart   width   alt   val   图表   http   技术分享   es2017   

<script type="text/javascript">
window.onload=function(){
var play=new CanvasJS.Chart(‘play1‘,{
title:{
text:‘Line Chart‘
},
axisX:{
interval: 10
},
data:[{
type:‘line‘,
dataPoints:[{
x:10,y:10
},
{ x: 20, y: 14 },
{ x: 30, y: 20 },
{ x: 40, y: 60 },
{ x: 50, y: 50 },
{ x: 60, y: 80 },
{ x: 70, y: 40 },
{ x: 80, y: 60 },
{ x: 90, y: 10 },
{ x: 100, y: 50 },
{ x: 110, y: 40 },
{ x: 120, y: 14 },
{ x: 130, y: 70 },
{ x: 140, y: 40 },
{ x: 150, y: 90 },
]
}]
});
play.render();

}
</script>
<script src="../../canvasjs.min.js"></script>

</head>
<body>
<div id="play1" style="width: 500px;height: 500px;;">

</div>

技术分享

前端canvasjs图表制作

标签:poi   chart   width   alt   val   图表   http   技术分享   es2017   

原文地址:http://www.cnblogs.com/qq666666/p/7598972.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!