gpt4 book ai didi

javascript - RGraph 折线图上特定点的不同颜色

转载 作者:行者123 更新时间:2023-11-29 22:58:31 25 4
gpt4 key购买 nike

我正在尝试在定义了 highlightStyle: 'halo',tickmarksStyle: ['circle'] 的点中指定颜色。

图表:

enter image description here

如果这些点超过那条蓝线,我想将它们的颜色更改为红色。条件没什么大不了的,但似乎无法弄清楚。

或者,如果更简单,如果主线超过蓝线,则将线段颜色更改为红色。

我一直在查看 Line chart API但找不到适用于我的场景的参数。

我能做什么?

最佳答案

如果我正确理解了您的请求,那么最简单的方法就是使用 filledThresholdfilledThresholdColors 属性。

代码如下:

new RGraph.Line({
id: 'cvs',
data: [d1, d2],
options: {
backgroundGridHlinesCount: 5,
backgroundGridVlines: false,
backgroundGridBorder: false,
axes: false,
filled: true,
filledRange: true,
filledRangeThreshold: 12,
filledRangeThresholdColors: ['red', 'blue'],
xaxisLabels: ['A','B','C','D','E','F','G','H','I','J','K','L','M','N','O','P'],
colors: ['transparent', 'transparent'],
xaxisTickmarksCount: 15,
tickmarksStyle: null
}
}).draw();

关于javascript - RGraph 折线图上特定点的不同颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56126895/

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