andrei9992000
Members-
Content count
7 -
Joined
-
Last visited
About andrei9992000
-
Rank
Forum Newbie
-
rendering chart from external .as class
andrei9992000 replied to andrei9992000's topic in General usage
Works great, THANKS A LOT!!! -
rendering chart from external .as class
andrei9992000 replied to andrei9992000's topic in General usage
*BUMP* Anyone have any idea what the issue is? -
Hello, I'm trying to load an external xml MS chart from a custom class I made. The XML loads fine however the chart would not render/display. I have attached my main, xml as well as my class code. Please let me know what the issues is. Thanks, Andrei main2.zip
-
*BUMP* anyone care to give me any suggestion @ all or does this company offer 0 support?
-
Hello, My chart version is "3.1.1". Thanks,
-
HI, I am using the XML found in the Gallery/Data/MSArea2D.xml. What exactly do you mean by chart version?? The version, height and area are given by var chart1:MSArea2DChart = new MSArea2DChart(chartContainer1MC, 5, 550, 425, 200, 15, false, "EN", "noScale"); no? Please let me know if I'm missing something Thanks, Andrei
-
Hello. I am trying to create an MSArea2DChart. Loading the data works fine and the graph displays, however when I move my mouse over the dot for the first and last set of data, the mouseOver box is not displayed at the proper location (just above the dot) but outside the graph. I found out that if I make my canvasPadding large (over 100) it works. What might seem to be the issue? This is my code: #include "com/fusioncharts/includes/LoadingFunctions.as" #include "com/fusioncharts/includes/AppMessages.as" import com.fusioncharts.core.charts.MSArea2DChart; var chartContainer1MC:MovieClip = createEmptyMovieClip("ChartHolder1", this.getNextHighestDepth()); var chart1:MSArea2DChart = new MSArea2DChart(chartContainer1MC, 5, 550, 425, 200, 15, false, "EN", "noScale"); var xmlData:XML = new XML(); xmlData.ignoreWhite=true; xmlData.onLoad = function(success) { if (success) { chart1.setXMLData(xmlData); chart1.render(); stop(); } } xmlData.load("Data.xml");