gpt4 book ai didi

javascript - Chart.js 中的水平 'limit' 线

转载 作者:太空狗 更新时间:2023-10-29 13:52:48 26 4
gpt4 key购买 nike

是否可以在 Chart.js 中的现有图表中添加一条水平线? ?

这里是示例字符代码:

// the canvas
<canvas id="myChart" width="800" height="200"></canvas>

// the js
var ctx = document.getElementById("myChart").getContext("2d");
var myNewChart = new Chart(ctx).Bar(data);

我想添加一条水平标记线(例如,在 y=100 处,如 fiddle 中的高图)

最佳答案

是的,你真的可以做到。你想要水平标记线,所以你需要在你的 y 轴内添加这段代码

plotLines: [{
color: '#FF0000',
width: 2,
value: .50 * 200 // The marker value will be 100
// Or you can just set its value to 100
}]

关于javascript - Chart.js 中的水平 'limit' 线,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28518177/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com