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;
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;
<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 ;)