8
zingchartでシリーズ配列の外に設定された異なる値に異なる背景色を設定するにはどうすればよいですか?どこで、どのように私はここ外部の系列でプロット値の色を設定する方法ZingChart
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"
}
}
]
};