1. 程式人生 > >Fusioncharts金字塔圖設定背景顏色

Fusioncharts金字塔圖設定背景顏色

研究了兩天的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(); 
    });