gpt4 book ai didi

javascript - 如何更改一条特定线的网格线宽

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:57:16 28 4
gpt4 key购买 nike

我需要帮助更改 Chartjs 图表上一条特定网格线上的线宽(或颜色)。

在下面的示例中,我只想增加 y 轴 60 处水平网格线的网格线宽度(或更改颜色)。我已尽力在 Chartjs 文档中找到解决方案但失败了。也许目前不支持此功能,如果支持,我想知道是否有人可以帮助我添加此功能。

http://i.stack.imgur.com/nFB77.jpg

谢谢!

最佳答案

您可以扩展图表以覆盖比例绘制功能并在您想要的地方绘制更粗/不同颜色的线

预览

enter image description here


脚本

Chart.types.Bar.extend({
name: "BarAlt",
initialize: function(data){
Chart.types.Bar.prototype.initialize.apply(this, arguments);

var originalScaleDraw = this.scale.draw;
this.scale.draw = function() {
originalScaleDraw.apply(this, arguments);
this.ctx.save();
this.ctx.beginPath();
this.ctx.lineWidth = this.gridLineWidth * 5;
this.ctx.strokeStyle = "rgba(120,120,220,1)";
this.ctx.moveTo(Math.round(this.xScalePaddingLeft), this.calculateY(60));
this.ctx.lineTo(this.width, this.calculateY(60));
this.ctx.stroke();
this.ctx.closePath();
this.ctx.restore();
}
}
});

然后

...
new Chart(ctx).BarAlt(data);

fiddle - http://jsfiddle.net/udojrq57/

关于javascript - 如何更改一条特定线的网格线宽,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36795705/

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