Search the Community

Showing results for tags 'background; transparent'.



More search options

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • Company Forums
    • Company News
  • Product Forums
    • FusionCharts XT
    • FusionWidgets XT
    • PowerCharts XT
    • FusionMaps XT
    • Collabion Charts for SharePoint
    • jQuery Plugin for FusionCharts
    • AngularJS plugin
    • ReactJS plugin
  • General Forums
    • FusionCharts Jobs and Consultation
    • FusionLounge

Found 1 result

  1. I can't for the life of me figure out how to achieve a transparent background with fusion charts XT using the jquery plugin [@version fusioncharts/3.2.3-sr3.5347] here's my code: $('#myChart').insertFusionCharts({ type:"Pie2D", renderer: "flash", width: "30", height: "30", id: 'p-'+data.id, dataFormat: "json", wmode: 'transparent', dataSource: { chart: { pieRadius: 15, bgAlpha: 0, animation:0, showShadow:0, enableRotation:1, showLegend:0, showLabels:0, showValues:0, showToolTip:0, dataLabels: 0, showBorder:0, enableSmartLabels:0 }, data: [ {value: data.med, color:'#009000'}, {value: 100 - parseInt(data.med), color:'#900000'} ] } }); I've tried setting bgAlpha equal to '0,0' , but that doesn't work either. Thanks.