我的问题的主要目标是在 Donut Change 上添加特定的颜色。我用谷歌搜索了一段时间,我认为 JqPlot 是最好的库,但我在尝试更改 JqPlot 上的甜甜圈图主题时遇到了问题:
我在这里找到了文档:
http://www.jqplot.com/deploy/dist/examples/theming.html
http://www.jqplot.com/docs/files/jqplot-themeEngine-js.html
所以我尝试像这样应用主题:
var gabe = {
seriesColors: ["#4bb2c5", "#EAA228", "#c5b47f", "#579575", "#839557", "#958c12"],
grid: { backgroundColor: '#000000' }
}
... {my chart}
plot3.themeEngine.newTheme('gabe', gabe);
plot3.activateTheme('gabe');
但只有背景发生了变化。如何更改甜甜圈颜色?