paul.ansell11

Members
  • Content count

    4
  • Joined

  • Last visited

About paul.ansell11

  • Rank
    Forum Newbie
  1. dhtml menu hide my flash graph

    Hi, Yes all seems to be sorted now. I am using the RenderChartHTML function, but wasn't reconpiling the project when I ran the page. As soon as I rebuilt the project everything worked as you suggested. Many Thanks Paul
  2. dhtml menu hide my flash graph

    Hi I'm having the same problem with the above using Visual studio web developer 2008/ASP.NET 2.0 (VB). I used to use asp and could edit the file in: FusionChartsCodeASPIncludesFusionCharts.asp I'm now trying to do the same thing to edit: FusionChartsCodeVB_NETsrcFusionCharts.vb I can edit the file and add the following parameter within the RenderChartHTML Function. strFlashVars.Append(("<param name=""wmode"" value=""transparent"" />" & Environment.NewLine)) but this still doesn't work. I think I am refering to the wrong file/function because if I change the function name to RenderChartHTML_Test my code still renders the chart. Any idea what I'm doing wrong? Many Thanks Paul
  3. Rotate labels

    Many thanks.
  4. Rotate labels

    Should labelDisplay='ROTATE' work in the free version. In the documentation that comes with FusionCharts Free it says that it should work? FusionCharts Free vs. FusionCharts v3 - Feature Comparison Matrix Feature FusionCharts v3 FusionCharts Free Display Modes for x-axis labels Rotate, stagger, slant, wrap etc. Just rotate option My Code (ASP): strXML = strXML & "<graph caption='Monthly Unit Sales' xAxisName='Maint' labelDisplay='ROTATE' yAxisName='Errors' decimalPrecision='0' formatNumberScale='0' >" WHILE NOT rsChart.EOF strXML = strXML & "<set name='" & rsChart("Name") & "' value='" & rsChart("Errors") & "' />" rsChart.MoveNext WEND strXML = strXML & "</graph>" rsChart.close objConn.Close SET rsChart=nothing SET objConn=nothing '--------------------