How to set different background colors for different value set outside the series array in zingchart ? Where should and how should i set my background-color-1 for value set1 and valu set2
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"
            }
        }
    ]
};
 
    