如何在zingchart中为系列数组外的不同值集设置不同的背景颜色?应该在哪里以及如何为值set1和value 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" } } ] };
nardecky.. 9
以下是如何执行此操作的示例:http: //demos.zingchart.com/view/O79F20UY
var palette中的第一个数组索引表示工具提示的文本颜色(在悬停弹出框中),var palette中的第二个数组索引表示系列颜色.
我找到了一个答案,引用了一些关于自定义调色板的文档:http: //www.zingchart.com/docs/features/themes/
如果您有任何其他问题,请随时联系我 - 我在ZingChart团队.
以下是如何执行此操作的示例:http: //demos.zingchart.com/view/O79F20UY
var palette中的第一个数组索引表示工具提示的文本颜色(在悬停弹出框中),var palette中的第二个数组索引表示系列颜色.
我找到了一个答案,引用了一些关于自定义调色板的文档:http: //www.zingchart.com/docs/features/themes/
如果您有任何其他问题,请随时联系我 - 我在ZingChart团队.