Google Charts - Change individual bar color

后端 未结 9 1471
走了就别回头了
走了就别回头了 2020-12-10 01:36

With Google Charts bar graph, is it possible to to change the color of one bar. For example I\'d like to make the 2006 data red (other bars are blue).

 funct         


        
9条回答
  •  眼角桃花
    2020-12-10 02:01

    var options = {
    
          colors: ['red','green', 'purple']
    
    };
    

    colors parameter will only accept arrays if we are using this we have to make sure we are adding color for all the elements.

提交回复
热议问题