chart.js 官方的第一个列子就是。链接datasets:[] 数组里有值得时候俩个的时候,就可以双柱图了。
var barChartData = { labels: ['January', 'February', 'March', 'April', 'May', 'June', 'July'], datasets: [{ label: 'Dataset 1', backgroundColor: color(window.chartColors.red).alpha(0.5).rgbString(), borderColor: window.chartColors.red, borderWidth: 1, data: [ randomScalingFactor(), randomScalingFactor(), randomScalingFactor(), randomScalingFactor(), randomScalingFactor(), randomScalingFactor(), randomScalingFactor() ] }, { label: 'Dataset 2', backgroundColor: color(window.chartColors.blue).alpha(0.5).rgbString(), borderColor: window.chartColors.blue, borderWidth: 1, data: [ randomScalingFactor(), randomScalingFactor(), randomScalingFactor(), randomScalingFactor(), randomScalingFactor(), randomScalingFactor(), randomScalingFactor() ] }] };
你刚刚问到宽度问题,这个是例子。
options:{ scales:{ xAxes:[{ barPercentage: 0.1 }] } }
datasets写两份就行了var myBarChart = new Chart(ctx).Bar(data, options)
var data = {
labels: ["January", "February", "March", "April", "May", "June", "July"], datasets: [ { label: "My First dataset", fillColor: "rgba(220,220,220,0.5)", strokeColor: "rgba(220,220,220,0.8)", highlightFill: "rgba(220,220,220,0.75)", highlightStroke: "rgba(220,220,220,1)", data: [65, 59, 80, 81, 56, 55, 40] }, { label: "My Second dataset", fillColor: "rgba(151,187,205,0.5)", strokeColor: "rgba(151,187,205,0.8)", highlightFill: "rgba(151,187,205,0.75)", highlightStroke: "rgba(151,187,205,1)", data: [28, 48, 40, 19, 86, 27, 90] } ] };
我还请想问下,怎样调整柱状图x轴的间距哒?默认的太窄了。
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
暂无简介
文章 0 评论 0
接受
发布评论
评论(3)
chart.js 官方的第一个列子就是。链接
datasets:[] 数组里有值得时候俩个的时候,就可以双柱图了。
你刚刚问到宽度问题,这个是例子。
datasets写两份就行了
var myBarChart = new Chart(ctx).Bar(data, options)
var data = {
我还请想问下,怎样调整柱状图x轴的间距哒?默认的太窄了。