rbaldwin

Members
  • Content count

    5
  • Joined

  • Last visited

Posts posted by rbaldwin


  1. Well, i resolved this myself. Seems that one of th other classes i am importing also has a rederChart method

     

    so i had to change

     

    Label1.Text = FusionCharts.RenderChart("FusionCharts/Charts/Line.swf", "", xmlData.ToString(), chartID, chartWidth, chartHeight, chartDebug, False)

     

     

    to

    Label1.Text = InfosoftGlobal.FusionCharts.RenderChart("FusionCharts/Charts/Line.swf", "", xmlData.ToString(), chartID, chartWidth, chartHeight, chartDebug, False)


  2. I'm using the Not Free version 3.2 but since it isn't the XT version i'm posting here

     

    I am getting the following error:

     

     

    'RenderChart' is not a member of 'FusionCharts'.

     

    on this statement

    Label1.Text = FusionCharts.RenderChart("FusionCharts/Charts/Line.swf", "", xmlData.ToString(), chartID, chartWidth, chartHeight, chartDebug, False)

     

    I have

     

    Imports InfoSoftGlobal

     

    and in my App_Code folder i have copied FusionCHarts.vb from FusionCharts_Developer\Code\VB_NET\src

     

    any suggestion appreciated


  3. i'm working in vb.net, my question is what are the minimal files i need in my project to produce a chart.

     

    i have my chart working but i know that i don't need all of the files on my web site to produce a chart.

     

    obviously i need the .swf files for the charts that i will be using.

     

    i also know that i need the to have a copy of FusionCharts.vb in my App_Code folder

     

    and i need to have FusionCharts.js

     

    what other files/foders do i need.

     

    thanks in advance

     

    RB