gpt4 book ai didi

javascript - plotly 设置颜色

转载 作者:行者123 更新时间:2023-11-30 12:16:53 25 4
gpt4 key购买 nike

我觉得我已经尝试了所有方法,但似乎没有任何效果:

            var charData = [{
x: x1,
y: y,
type: 'bar',
color: 'rgb(31,119,180)',
orientation: 'h',
name: 'Nuværende',
bar: {
color: 'rgb(rgb(31, 114, 225)'
}
}, {
x: x2,
y: y,
type: 'bar',
orientation: 'h',
name: 'Forventet'
}],
layout = {
title: 'Brugere',
barmode: 'stack',
legend: {
orientation: 'h'

}
};
Plotly.newPlot(area,charData,layout);

我也试过:

            var charData = [{
x: x1,
y: y,
type: 'bar',
color: 'rgb(31,119,180)',
orientation: 'h',
name: 'Nuværende',
color: '#23b7e5'
}, {
x: x2,
y: y,
type: 'bar',
orientation: 'h',
name: 'Forventet'
}],
layout = {
title: 'Brugere',
barmode: 'stack',
legend: {
orientation: 'h'

}
};
Plotly.newPlot(area,charData,layout);

但是图表保持默认颜色。

那么如何使用 Plotly 更改颜色?

最佳答案

尝试:

var charData = [{
x: x1,
y: y,
type: 'bar',
orientation: 'h',
name: 'Nuværende',
marker: {
color: '#23b7e5'
}
}],
layout = {
title: 'Brugere',
barmode: 'stack',
legend: {
orientation: 'h'

}
};
Plotly.newPlot(area,charData,layout);

另一个例子 here .

关于javascript - plotly 设置颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32206233/

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