ollertoncj

Members
  • Content count

    2
  • Joined

  • Last visited

About ollertoncj

  • Rank
    Forum Newbie
  1. Is it possible to choose where the baseline of an X-Y Scatter Chart goes? Presently my x-axis values are at the bottom of the chart - I'd like them to appear on the y-axis 0 point.
  2. 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?