chart js 2 how to set bar width(图表 js 2 如何设置条形宽度)
问题描述
我使用的是 Chart js 版本:2.1.4,但无法限制条形宽度.我在stackoverflow上找到了两个选项
I'm using Chart js version: 2.1.4 and I'm not able to limit the bar width. I found two options on stackoverflow
barPercentage: 0.5
或
categorySpacing: 0
但没有一个适用于上述版本.有没有办法在不手动修改chart.js核心库的情况下解决这个问题?
but neither of one works with the mentioned version. Is there a way to solve this issue without manually modifying the chart.js core library?
谢谢
推荐答案
你是对的:你要编辑的属性是 barPercentage
.
You were right : The attribute you have to edit is barPercentage
.
但错误可能来自您编辑值的哪里.
But maybe the error comes from where you edited the value.
您可以在 条形图选项 中看到:
名称:barPercentage
- 类型:数字
- 默认:0.9
- 描述 : 每个条的可用宽度的百分比 (0-1) 应在类别百分比内.1.0 将采用整个类别宽度并将条形放在彼此旁边.阅读更多
Name : barPercentage
- Type : Number
- Default : 0.9
- Description : Percent (0-1) of the available width each bar should be within the category percentage. 1.0 will take the whole category width and put the bars right next to each other. Read More
属性实际上存储在scales.xAxes
(Options for xAxes"表中).
The attribute is actually stored in scales.xAxes
("Options for xAxes" table).
所以你只需要这样编辑你的图表:
So you just have to edit your chart this way :
var options = {
scales: {
xAxes: [{
barPercentage: 0.4
}]
}
}
<小时>这是一个完整的工作示例,具有自定义宽度 (0.2
) 的条形:
var data = {
labels: ["January", "February", "March", "April", "May", "June", "July"],
datasets: [{
label: "My First dataset",
backgroundColor: "rgba(75,192,192,0.4)",
borderColor: "rgba(75,192,192,1)",
data: [65, 59, 75, 81, 56, 55, 40],
}]
};
var ctx = document.getElementById("myChart");
var myChart = new Chart(ctx, {
type: 'bar',
data: data,
options: {
scales: {
yAxes: [{
ticks: {
beginAtZero: true
}
}],
xAxes: [{
// Change here
barPercentage: 0.2
}]
}
}
});
console.log(myChart);
<script src="aHR0cHM6Ly9jZG5qcy5jbG91ZGZsYXJlLmNvbS9hamF4L2xpYnMvQ2hhcnQuanMvMi4xLjYvQ2hhcnQuanM="></script>
<canvas id="myChart"></canvas>
<小时>
如 发布版本 2.2.0 中所述 -候选人2:
- 现在可以手动配置条形图中条形的粗细.在正确的轴上使用新的
barThickness
选项来设置条的厚度. - 等等……
Enhancements
- Can now manually configure the thickness of a bar in a bar chart. Use a new
barThickness
option on the correct axis to set the thickness of a bar.- And so on ...
这篇关于图表 js 2 如何设置条形宽度的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:图表 js 2 如何设置条形宽度
- Flexslider 箭头未正确显示 2022-01-01
- 使用RSelum从网站(报纸档案)中抓取多个网页 2022-09-06
- 400或500级别的HTTP响应 2022-01-01
- Fetch API 如何获取响应体? 2022-01-01
- Quasar 2+Apollo:错误:找不到ID为默认的Apollo客户端。如果您在组件设置之外,请使用ProvideApolloClient() 2022-01-01
- addEventListener 在 IE 11 中不起作用 2022-01-01
- 如何使用 JSON 格式的 jQuery AJAX 从 .cfm 页面输出查 2022-01-01
- 失败的 Canvas 360 jquery 插件 2022-01-01
- Css:将嵌套元素定位在父元素边界之外一点 2022-09-07
- CSS媒体查询(最大高度)不起作用,但为什么? 2022-01-01