0
votes

I need to hide "Fusion charts XT trial" text while displaying the chart. I tried to hide this using css but it's not getting solved.

#css
    .raphael-group-423-creditgroup {
          display:none; 
5
You should buy this product.Jeroen Heier
is there any way to do this other than buying ?? @JeroenHeierKiran Deep

5 Answers

12
votes

In your CSS file just write

svg > g[class^="raphael-group-"] > text{
    display: none;
}
3
votes
<style type="text/css">
    g[class$='creditgroup'] {
         display:none !important;
    }
</style>

This worked for me and I guess it's simple and will work for all.

You can make it even more specific.

<style type="text/css">
    g[class^='raphael-group-'][class$='-creditgroup'] {
         display:none !important;
    }
</style>

Enjoy illegality ;)

2
votes
  1. Simple Edit your fusioncharts.js
  2. Find fontSize:9,fontFamily:"Verdana,sans"
  3. Set font size 9 to 0
0
votes
var item = document.body.querySelector('.raphael-group-423-creditgroup');
item.parentNode.removeChild(item);
0
votes

It working for me

div[id^='fc-'] > span > svg > defs + g > g:nth-child(26) { display:none !important; }