2016-07-18 99 views
3

我有一個要求,我似乎無法弄清楚如何去做。背景顏色to highcharts

我需要爲我的圖表添加背景顏色,但不要在高圖中添加標籤。 有沒有可能,任何人都可以幫助我。

此處爲具有背景色的圖表示例鏈接。

chart: { 
     backgroundColor: '#FCFFC5', 
     type: 'line' 
    }, 

jsFiddle

但我需要的是:

enter image description here

在這種圖像被覆蓋在紅色部分的面積需要不具有背景色。

+1

如果你剛剛守望着文檔你會看到有[plotBackGroundColor選項](http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/ highcharts/chart/plotbackgroundcolor-color /) – ODelibalta

回答

0

.highcharts-plot-background是你在找什麼。添加到您的CSS

.highcharts-plot-background { 
    fill: #FCFFC5; 
} 
.highcharts-plot-border { 
    stroke-width: 2px; 
    stroke: #7cb5ec; 
} 

活生生的例子:jsFiddle