• Content count

    17
  • Joined

  • Last visited

Everything posted by [email protected]

  1. Hi we tried to put displayValue attribute in the xml for a Waterfall2D graph, but it doesnt show in the graph.
  2. What are the properties for your swf file? Size and date modified? I do not know what version I am using?
  3. What swf are you using? The one that I am using is Waterfall2D.swf 16.02.2008 61kb. What properties does yours have?
  4. Is it possible to put 2 charts in the XML file as below to place 2 charts on the screen? We are using a case tool called CaGen and on the window we place a Flash ocx. We set the "movie" property of the OCX to HBullet.swf and the "dataURL" to the XML file. Then we invoke "Rewind" and "Play" methods to display the ocx on the screen, so the only place to put multiple charts is the XML file. Is this possible? If not, any ideas how we can achieve this??
  5. Hi, Is there a way of displaying linear gauge (HLinearGauge.swf) as vertical? Thanks,
  6. Hi, When there's no data for a pie chart. It displays 'No Data to Display' message. Is there a way to stop this message. The end users think that this is a system problem when they see this message on the screeen. <set label="Item A" value="0" color="9B4F96" isSliced="1"/> <set label="Item B" value="0" color="EE2F43"/> <set label="Item C" value="0" color="35006D" /> <set label="Item D" value="0" color="FCB514"/> <set label="Item E" value="0" color="007C59" />
  7. I put the xml containing the following [code ] <chart caption='Monthly Revenue' xAxisName='Month' yAxisName='Revenue' numberPrefix='$' showValues='0'> <set label='Jan' value='420000' /> <set label='Feb' value='910000' /> <set label='Mar' value='720000' /> <set label='Apr' value='550000' /> <set label='May' value='810000' /> <set label='Jun' value='510000' /> <set label='Jul' value='680000' /> <set label='Aug' value='620000' /> <set label='Sep' value='610000' /> <set label='Oct' value='490000' /> <set label='Nov' value='530000' /> <set label='Dec' value='330000' /> <trendLines> <line startValue='700000' color='009933' displayvalue='Target' /> </trendLines> </chart> [/ code ] as the source to the html, however when I try to start the html I get 'No Data to Display' error. I am using MSColumn3D.swf. This is the simplest graph. If I put datasets and categories in it it shows fine... Any ideas?
  8. Hi Rajroop, Sorry I mistyped your name.. When I used Column3D.swf problem solved, thanks.
  9. Jajdoop, I am using a Column3D chart and it's a single series chart. If you have a look at the contents xml I posted it has ...<set label='Jan' value='420000' /> <set label='Feb' value='910000' />.... data provided. You indicated that I didn't provide any data..?
  10. my html is: [ code ] <html> <head> <title>My First FusionCharts</title> </head> <body bgcolor="#ffffff"> <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="900" height="300" id="Column3D" > <param name="movie" value="C:GEN76GenModelsGARyyy0414.iefcFusionMSColumn3D.swf" /> <param name="FlashVars" value="&dataURL=Column3D.xml&chartWidth=900&chartHeight=300"> <param name="quality" value="high" /> <embed src="C:GEN76GenModelsGARyyy0414.iefcFusionMSColumn3D.swf" flashVars="&dataURL=Column3D.xml&chartWidth=900&chartHeight=300" quality="high" width="900" height="300" name="Column3D" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /> </object> </body> </html> [/ code ]
  11. I need a scatter chart which has Prod_1, Prod_2 and Prod_3 on the YAxis and 10, 20, 30 on the X Axis. How do I prepare the xml for this? Is it possible to put strings rather than integers on the Y Axis? Thanks,
  12. Is it possible to change the color for a specific occurance of a category label? For example when I try to change font size or color of label '2006/4' as below, it doesn't work. Is it possible to do this any other way, using styles for instance? <categories font ="Tahoma" fontSize="10" Fontcolor="000000"> <category label='2006/2' /> <category label='2006/3' /> <category label='2006/4' fontSize="12" Fontcolor="FF0000"/> <category label='2007/1' /> <category label='2007/2' /> <category label='2007/3' /> <category label='2007/4' /> <category label='2008/1' /> <category label='2008/2' /> <category label='2008/3' /> <category label='2008/4' /> <category label='2009/1' /> <category label='2009/2' /> </categories>
  13. Is it possible to align the legend towards left or right at the bottom of the chart? The only attribute I found was legendPosition which positions it either at the bottom or to the right of the chart.
  14. Hi I'd like to chnage the legend order in a COMBI3D chart. I have 2 lines and 1 bar on the chart. When I put reverseLegend='1' it doesn't change the legend order. Also, is it possible to changethe order of the legends at the bottom of the chart modifying the .xml? Thanks,
  15. Hi Rajroop, The attached xml didn't solve the problem. I think the problem is this: In this case where I have 2 lines and 1 bar on the COMBO3D chart, FusionCharts puts the lines first then the bar in the legend. If I have <dataset seriesName="A" > <dataset seriesName="B" renderAs = "Line" > <dataset seriesName="C" renderAs = "Line" > The order is C, B, A in the legend. First the lines (last one is shown first) then the bar. reverseLegend="1" did not make any change in the legend order in my case.. At least when I have 2 lines and a bar on a COMBI3D chart.
  16. I did it was no use unfortunately. It puts the lines first then the bar in the legend, so I can change the order of the legends for the lines but the bar always comes as the last in the legend.. I want the bar as the first in the legend.. I am attaching the xml. In the chart I want in musteri, bolge, banka order. <chart palette="3" caption="KARAR - Karsilastirmali Net Gelir ve
  17. I have a COMBI3D chart in whic I have Income and Cost (both as bars) and Net Income (as Line). When I change the color of 1 occurence of lne it won't change can this be a bug? Line color won't change where I set color to CC0033.. <dataset seriesName='Net Income' renderAs="Line" color="88B500"> <set value='78000' /> <set value='24000' /> <set value='17000' /> <set value='-43000' color = 'CC0033'/> <set value='68000' /> <set value='40000' /> <set value='88000' /> <set value='-50000' color = 'CC0033'/> <set value='62000' /> <set value='-30000' color = 'CC0033'/> <set value='58000' /> <set value='-37000' color = 'CC0033'/> </dataset>