I'm just getting to grips with FusionCharts v3 and am very please with the new ASP Class facility.
However, I'd like to stop getting the "Click to activate and use this control" message.
I've seen the article at http://www.fusioncharts.com/Docs/Contents/JSEmbed.html about using javascript to get around this problem but how do I use this when utilising the ASP Class?
Using the ASP Class requires creation of a FusionCharts object using
' Create FusionCharts ASP class object
set FC = new FusionCharts
However, the javascript at the above URL uses a javascript object (not ASP) to hold the new chart object using:
var myChart = new FusionCharts("../FusionCharts/Column3D.swf", "myChartId", "900", "300", "0", "0");
myChart.setDataURL("Data.xml");
myChart.render("chartdiv");
Is there any way to remove the "click to activate" message whilst using just the ASP Class?