aslanlotter

Members
  • Content count

    8
  • Joined

  • Last visited

About aslanlotter

  • Rank
    Forum Newbie
  1. external xml

    thx a lot for the help - it works now #include "com/fusioncharts/includes/LoadingFunctions.as" #include "com/fusioncharts/includes/AppMessages.as" // import com.fusioncharts.core.charts.Column3DChart; // ------------- XML Data for the chart -------------- // var myXML:XML = new XML(); myXML.load("Column3D_virus2007.xml"); myXML.onLoad = function(success) { if (success) { var chartContainerMC:MovieClip = _root.createEmptyMovieClip("ChartHolder", 1); // var myFirstChart:Column3DChart = new Column3DChart(chartContainerMC, 1, 450, 325, 20, 15, false, "EN", "noScale"); //Convey the XML data to chart. myFirstChart.setXMLData(myXML); //Draw the chart myFirstChart.render(); }else{ trace("warning")} }; // stop();
  2. external xml

    here you go - thx testing.zip
  3. external xml

    i am using flash 8 as2!
  4. external xml

    I am not sure what I am doing wrong? Nothing get displayed? Can somebody help? Best, Martin
  5. bar after bar

    Hi, is it possible to have bars apearing one after the other? //MB
  6. Rotate charts

    how can i then use a MS chart in my example? I mean i just need a single 3d chart. Martin
  7. Rotate charts

    ok, thx! why wont it work if i enter following code? <chart caption='Barometer' xAxisName='' yAxisName='' numberPrefix='%'><set label='virus' value='1.7400' /><set label='spam' value='89' />/chart> Martin
  8. Rotate charts

    Hi, Is it possible to rotate entire charts? Or, is there a Bar 3d chart? //Martin