gpt4 book ai didi

javascript - Dygrahs js(代码): different thickness and color of the line (x-scale)

转载 作者:行者123 更新时间:2023-11-28 04:04:28 27 4
gpt4 key购买 nike

我想更改网格的一条垂直线(线条的不同粗细和颜色) - 设置设置线条样式的规则。

我正在尝试结合这些工具:ticker 和 axisLabelFormatter;我的目标:每15秒在X轴上制作一个网格,但30秒的行倍数应该很粗(或提高宽度:gridLineWidth)。

我的代码在这里:在此处输入代码 http://jsfiddle.net/cLw2grga/

最佳答案

使用股票行情指示器无法实现此效果,但可以使用 underlayCallback :

underlayCallback: function(ctx, area) {
ctx.save();
ctx.lineWidth = 0.5;
for (var x = 15000; x <= 300000; x += 30000) {
var domX = this.toDomXCoord(x);
ctx.beginPath();
ctx.moveTo(domX, 0);
ctx.lineTo(domX, area.h);
ctx.stroke();
}
ctx.restore();
}

参见full example here .

关于javascript - Dygrahs js(代码): different thickness and color of the line (x-scale),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46824566/

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