2016-04-03 63 views
1

我使用Highcharts創建一些圖表,但我發現它不適用於更改圖表標題的backgroundHighcharts標題背景不能更改

例如:

// works, the color did get to red 
    title: { 
    text: title, 
    style: {"color":"#ff0000"} 
    }, 

    // the color did get to white but the background is not set to red. 
    title: { 
    text: title, 
    style: {"backgroundcolor":"#ff0000", "color":"#ffffff"} 
    }, 

我應該怎麼做才能解決這個問題?

感謝

回答