Pallav

L1 Moderators
  • Content count

    2,385
  • Joined

  • Last visited

  • Days Won

    11

Everything posted by Pallav

  1. Washington DC

    Hi, Washington DC and Maryland are separate entities.
  2. How to show Sub Categories?

    I'm afraid FusionCharts doesn't support sub-categories as of now.
  3. FusionCharts.js setDataURL method problem

    Just URL-Encode the entire URL before passing it to FusionCharts.
  4. Multiple Charts on same page

    You can call renderChart() multiple times - but parameterize the function which returns the XML data to return different XML data based on same recordset.
  5. Yes - indeed you can have that in FusionCharts.
  6. Kurt, I'm not sure if I've understood your problem. If you can please host this code on your live server and give me a link, I can help you debug it.
  7. Suresh, As of now, the only option for legend placement is right/bottom.
  8. FC and Flex

    Hi, Can you please try with the attached chart once? While loading this SWF, just make sure to specify the chartWidth and chartHeight variables as under: load("Pie3D.swf?chartWidth=xxx&chartHeight=yyy")
  9. Data Label in multiple lines

    Just make sure you're using dataURL method and not dataXML method, when using special characters.
  10. Labels vs. Mouseovers

    For a single series line chart, you can set labels and tool text as : <set label='Your label' value='xx' toolText='Custom tool text' ... />
  11. Problems with charts in Powerpoint

    Steve, This is an issue with PowerPoint, where you need to set the "Playing" attribute to true after the chart has animated once. As for caching issue, can you try adding a constantly changing parameter at end of XML file - like Chart.swf?dataURL=Data.xml&temp=75676
  12. problem with MSStackedColumn2DLineDY

    Hi, In your XML, I couldn't find where you've specified the max value of 1.1. You'll need it to set it as <chart SYAxisMaxValue='1.1' ..>
  13. Hi, Can you please send us the live URL of one such page? We'll test it and get back to you.
  14. Hi, Can you please send us the live URL of one such page? We'll test it and get back to you.
  15. If the XML is made by Webspeed and then passed to PHP, you can do use two ways to change bgColor: 1. Use string replacement (either direct or using RegExp) 2. Use XML DOM to read the XML, and then push the new attribute
  16. DHTML hidden behind flash graph/charts [Solved]

    David, Can you please try clearing your browser cache and then viewing it?
  17. Auto Wrapping of text and tooltips

    I'm afraid our pie chart doesn't wrap the labels.
  18. Hi, FusionCharts uses "noScale" as the scaling parameter, and as such we do not recommend specifying width and height in percent. However, you can do so as explained at http://www.fusioncharts.com/docs/Contents/PercentResize.html
  19. Labels vs. Mouseovers

    Hi, By default, we show "label, value" as mouse over text. However, that can be customized to your own custom text.
  20. Accented Character

    Try something like: //Output it header('Content-type: text/xml'); echo $strXML; ?> Also, what encoding are you using?
  21. wraping of chart title

    I'm afraid you cannot wrap the title.
  22. Export to JPEG

    It'll not be this year, owing to our scheduled releases.
  23. Multi-Series Bar Chart Problem

    This bug was fixed in v3.0.2. The latest release is v3.0.3, which can be downloaded from www.fusioncharts.com/PUC > My Orders > Re-download.
  24. Trendline

    Only the scatter/bubble charts support vertical trend lines. Rest of the charts support vLine. Please see http://www.fusioncharts.com/docs/Contents/AttDesc/VLines.html
  25. Balloon Tip Window from database?

    With FusionCharts v3, you can do it. Each <set> element has an attribute toolText='' which can accept any string value.