2016-04-03 56 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"} 
    }, 

我应该怎么做才能解决这个问题?

感谢

回答