Chart.js 插件的使用
程序员文章站
2022-07-13 15:52:10
...
最近因为做一个网页需要使用柱形图来显示统计报表,利用chart.js插件完成,记录如下:
1.chart.js插件下载的官网地址 http://www.chartjs.org/docs/latest/
html
<div class="chart-container" style="margin-left: 50px; height:400px; width:500px">
<canvas id="myChart" ></canvas>
</div>
因为canvas会填满最近的父元素,所以用一个div把它包含住,通过设置div的大小来控制canvas的大小!!!切记这一点,我当时因为这个问题,改变不了canvas的大小而困惑了好久。
Js
var ctx = document.getElementById("myChart").getContext("2d");
var chart = new Chart(ctx, {
// The type of chart we want to create
type: 'line',
// The data for our dataset
data: {
labels: [1,2,3,4,5,6,7],
datasets: [{
backgroundColor: 'rgb(255, 255, 255)',//绘制双曲线的时候最好使用rgba,要不不透明的白色背景可以使得某些线条绘制不出来
borderColor: 'rgb(255, 99, 132)',
data: [0, 10, 5, 2, 20, 30, 45],
}]
},
// 配置文件
options: {
//标题设置
title:{
display:true,
text:'每圈速度',
},
//禁用动画
animation:{
duration:0,
},
hover:{
animationDuration:0,
},
responsiveAnimationDuration: 0,
//提示功能
tooltips:{
enable:false
},
//顶部的文字提示
legend:{
display:false,
},
//设置x,y轴网格线显示,标题等
scales :{
xAxes:[{
//轴标题
scaleLabel:{
display:true,
labelString:'第几圈',
fontColor:'#666'
},
//网格显示
gridLines:{
display:false
},
}],
yAxes:[{
scaleLabel:{
display:true,
labelString:'成绩/s'
},
gridLines:{
display:false
},
}],
},
//禁用赛尔曲线
elements: {
line: {
tension: 0,
}
}
}
});
因为chart.js中用到了jquery库,所以在引入chart.js时应该先引入jquery库。
此篇只展示了曲线图的应用,还可以利用chart.js来设计饼图,柱形图等,非常方便。