Sign in to follow this  
davidoff

Problem of display with: PYAxisName and SYAxisName

Recommended Posts

I load since my file fla your code of the file: Col3DLineDY.xml who is:

 

#

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

#

 

 

 

 

 

but the display of: PYAxisName and SYAxisName do not work (look my image joined please) , there is nothing, here is my actionscript code of my file fla:

 

 

 

#include "com/fusioncharts/includes/LoadingFunctions.as"

 

#include "com/fusioncharts/includes/AppMessages.as"

 

//import com.fusioncharts.core.charts.MSColumn3DLineDYChart;

 

import com.fusioncharts.core.charts.MSCombiDY2DChart;

 

 

 

 

 

//----------------------------//

 

var myXML:XML = new XML();

 

myXML.load("Col3DLineDY.xml");

 

 

 

myXML.onLoad = function() {

 

renderChart();

 

};

 

function renderChart() {

 

var c1:MovieClip = this.createEmptyMovieClip("Chart1", 1);

 

var chart1:MSCombiDY2DChart = new MSCombiDY2DChart(c1, 1, 900, 400, 52.5, 170, false, "EN", "noScale");

 

chart1.setXMLData(myXML);

 

chart1.render();

 

}

 

 

 

 

 

I also tried with yAxisName, but that does not work either. PLease Help me

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
Sign in to follow this