Fusioncharts金字塔圖設定背景顏色
阿新 • • 發佈:2018-12-17
研究了兩天的Fusioncharts金字塔圖總會有一層白色背景再最底層,不管你設定什麼背景色都有一層白色背景,如圖: F12看dom結構 發現在rect外面還有一層span,並且設定了白色背景,解決方法就是將白色背景去掉呼叫圖表的setTransparent();方法
FusionCharts.ready(function() { var charts = new FusionCharts({ // "containerBackgroundOpacity":"0",//背景透明 "type": options.type, "renderAt": options.renderAt, "width": options.width, "height": options.height, "dataFormat": options.dataFormat, "dataSource": options.dataSource }); charts.setTransparent();//背景透明 設定上這個 charts.render(); });