8

如何为 zingchart 中系列数组之外的不同值设置不同的背景颜色?我应该在哪里以及如何为值 set1 和值 set2 设置我的 background-color-1

var myConfig = {
    type: "mixed", 
    series : [
        {
          type : 'bar',
            values : [35,42,67,89,25,34,67,85],
            values : [30,40,60,80],
           // how to change background color without setting it here ?

        },
        {
          type : 'line',
            values : [35,42,67,89,25,34,67,85],
            lineWidth : "6px",
            topState : {
              lineWidth : "2px",
              lineColor : "pink"
            }
        }
    ]
};
4

1 回答 1

9

这是一个如何做到这一点的工作示例:http: //demos.zingchart.com/view/O79F20UY

var palette 中的第一个数组索引表示工具提示的文本颜色(悬停弹出框上),var palette 中的第二个数组索引表示系列颜色。

我找到了一个答案,参考了一些关于自定义调色板的文档: http ://www.zingchart.com/docs/features/themes/

如果您有任何其他问题,请随时联系 - 我是 ZingChart 团队的一员。

于 2015-12-28T16:55:36.150 回答