如何为外部系列 ZingChart 中的绘图值设置颜色
How to set colors for plot values in outside series ZingChart
zingchart中series数组外的不同值集如何设置不同的背景色?我应该在哪里以及如何为值 set1 和值 set2
设置我的背景颜色 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"
}
}
]
};
这是一个如何操作的工作示例:
http://demos.zingchart.com/view/O79F20UY
var palette 中的第一个数组索引表示工具提示的文本颜色(在悬停弹出框上),var palette 中的第二个数组索引表示系列颜色。
我参考了一些关于自定义调色板的文档,在这里找到了答案:
http://www.zingchart.com/docs/features/themes/
如果您有任何其他问题,请随时与我们联系 - 我是 ZingChart 团队的一员。
zingchart中series数组外的不同值集如何设置不同的背景色?我应该在哪里以及如何为值 set1 和值 set2
设置我的背景颜色 1var 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"
}
}
]
};
这是一个如何操作的工作示例: http://demos.zingchart.com/view/O79F20UY
var palette 中的第一个数组索引表示工具提示的文本颜色(在悬停弹出框上),var palette 中的第二个数组索引表示系列颜色。
我参考了一些关于自定义调色板的文档,在这里找到了答案: http://www.zingchart.com/docs/features/themes/
如果您有任何其他问题,请随时与我们联系 - 我是 ZingChart 团队的一员。