gpt4 book ai didi

javascript - 中途更改 Dygraphs 系列的颜色

转载 作者:行者123 更新时间:2023-11-27 22:53:25 24 4
gpt4 key购买 nike

在我的图文图表中,我有一个已推断的系列。我想对推断部分进行不同的着色,但尚未找到方法。

我怀疑不存在一种方法(因为我在文档中发现的内容表明颜色仅适用于每个系列),但如果有一种方法,如何在中途更改数据系列的颜色?

最佳答案

你说得很对——没有办法改变 Dygraphs 中数据系列的一部分的颜色。但可以使用单独的系列来推断数据,如下所示:

[
[1, 0, null],
[2, 2, null],
[3, 4, null],
[4, 6, 6],
[5, null, 8],
[6, null, 10],
[7, null, 12],
[8, null, 14],
]

var g = new Dygraph(
document.getElementById("g"), [
[1, 0, null],
[2, 2, null],
[3, 4, null],
[4, 6, 6],
[5, null, 8],
[6, null, 10],
[7, null, 12],
[8, null, 14],
], {
colors: ['green', 'red'],
labels: ['x', 'normal', 'extrapolated'],
strokeWidth: 3,
title: 'different series for extrapolated data'
});
<script src="http://dygraphs.com/dygraph-dev.js"></script>
<div id="g"></div>

关于javascript - 中途更改 Dygraphs 系列的颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37853342/

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