davidoff

Members
  • Content count

    18
  • Joined

  • Last visited

About davidoff

  • Rank
    Junior Member
  1. Colors Of The Graphs

    thank you very much
  2. Colors Of The Graphs

    and how make the gradient for the data plot with the code ? : <chart caption='Crédits à la clientèle' subcaption='en mio de CHF' xAxisName='Années' showValues='1' placeValuesInside='1' showYAxisValues='1' yAxisMinValue='100' yAxisMaxValue='200' adjustDiv='0' numDivLines='4' formatNumberScale='0' decimalSeparator=',' thousandSeparator='’' basefont='Arial' basefontsize='14' basefontcolor='000000' bgAlpha='0' maxColWidth='70'> <set label='2007' value='184.6' color='00dcdc' /> <set label='2008' value='201.7' color='fff000' /> <set label='2009' value='193.8' color='b1eb08' /> <set label='2010' value='205' color='fe6404' /> <set label='2011' value='216.4' color='64b6f2' /> <styles> <definition> <style name='myGlow' type='Glow' color='FFFFFF'/> </definition> <application> <apply toObject='DataValues' styles='myGlow' /> </application> </styles> </chart>
  3. Colors Of The Graphs

    ok thank you very much
  4. Colors Of The Graphs

    and for the 3D data ?
  5. Colors Of The Graphs

    thank you very much
  6. Colors Of The Graphs

    I would like to change the default colors of the graphs
  7. Colors Of The Graphs

    how it is necessary to make to change the colors of the graphs
  8. It is OK, I found thank you
  9. I have no problem with yAxisName, but with PYAxisName='Revenue' and SYAxisName='Quantity' I tried all the same to integrate a block of dynamic text but that does not work all the same. Look, please, at the image which I joined you in the first topic
  10. tutorial to create this chart

    look my image joined, I have a consequentive problem with the green line. On the left axis I have values in % (ex: 2.3 %) and for my green line I have values mio (ex: 102248.17) if you look at the image "chart to do" the green line corresponds to mio and begins everything below, on my chart it is everything at the top and it is false. How do I have to make in my file xml? And how give fixed values onto right and left axes. Or you can say to me or I have to look in your documentation ?
  11. I load since my file fla your code of the file: Col3DLineDY.xml who is: <chart palette='1' caption='Sales' shownames='1' showvalues='0' numberPrefix='$' sYAxisValuesDecimals='2' connectNullData='0' PYAxisName='Revenue' SYAxisName='Quantity' numDivLines='4' formatNumberScale='0'> <categories> <category label='March' /> <category label='April' /> <category label='May' /> <category label='June' /> <category label='July' /> </categories> <dataset seriesName='Product A' color='AFD8F8' showValues='0'> <set value='25601.34' /> <set value='20148.82' /> <set value='17372.76' /> <set value='35407.15' /> <set value='38105.68' /> </dataset> <dataset seriesName='Product B' color='F6BD0F' showValues='0' > <set value='57401.85' /> <set value='41941.19' /> <set value='45263.37' /> <set value='117320.16' /> <set value='114845.27' dashed='1'/> </dataset> <dataset seriesName='Total Quantity' color='8BBA00' showValues='0' parentYAxis='S' > <set value='45000' /> <set value='44835' /> <set value='42835' /> <set value='77557' /> <set value='92633' /> </dataset> </chart> 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
  12. tutorial to create this chart

    There is an tutorial to create this chart, please, I tried but I did not make a success Look at my joined images please my code xml: <?xml version="1.0" encoding="UTF-8" ?> - <chart palette="[b]1[/b]" caption="[b]Produits int
  13. 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
  14. sorry ! i have found, I had to put MSColumnLine3DChart!!!
  15. It works with the graph Column2DChart, now if I want to make the same thing with MSColumnLine3D that does not work... i tried this code: #include "com/fusioncharts/includes/LoadingFunctions.as" #include "com/fusioncharts/includes/AppMessages.as" import com.fusioncharts.core.charts.MSColumnLine3D; //----------------------------// var myXML:XML = new XML(); myXML.load("../Data_pib_line.xml"); myXML.onLoad = function() { renderChart(); }; function renderChart() { var c1:MovieClip = this.createEmptyMovieClip("Chart1", 1); var chart1:MSColumnLine3D = new MSColumnLine3D(c1, 1, 919, 400, 52.5, 170, false, "EN", "noScale"); chart1.setXMLData(myXML); chart1.render(); }