Rahul Kumar

L1 Moderators
  • Content count

    1,253
  • Joined

  • Last visited

  • Days Won

    3

Everything posted by Rahul Kumar

  1. Javascript error for 'save as image'

    Hi Vipin, If you are running your HTML locally then by default Flash Player's security setting blocks invoking/calling JavaScript from SWF (Flash Movie), so you need to reset your setting into Global Security Setting panel. Please see the following post for more information: http://www.fusioncharts.com/forum/FindPost8077.aspx
  2. Multidimensional Dimensional Array from MySQL

    Hi, Sorry for late response. You could use FusionCharts_Gen.php class file by which you can directly render the chart from database. Please see the doc at http://www.fusioncharts.com/docs/Contents/PHPClassAPI/PHPClass_DB.html for more information.
  3. Format labels on pie chart?

    Hi, I am sorry, I did not notice that. And I am afriad, it is not possible as of now.
  4. Hi, I am sorry, it is not possible as of now.
  5. Image Caption

    Hi, Please see the following XML as reference to insert logo into a chart. For more information please see the docs at www.fusioncharts.com/docs NOTE: The above feature is supported in FusionCharts V3.1 version.
  6. Set Data XML

    Hi, Please change chart.setDataXml to chart.setDataXML.
  7. Set Data XML

    Hi, Could you please pass the XML without breaking it into multiple lines, and try again?
  8. How to make a fly-in animation for pie chart slices?

    Hi, I am afraid, it is not possible as of now.
  9. Format labels on pie chart?

    Hi, Could you please try using the following XML?
  10. Specify custom format of value for Grid?

    I am a afraid it is not possible as of now.
  11. can I create a chart on server side?

    Hi, Could you please read our docs at www.fusioncharts.com/docs -> Exporting as Image/PDF
  12. Hi, Couldd you please make sure that you are using FusionCharts V3.1 chart, as this feature is supported in V3.1 only.
  13. XML question

    Hi, Please see the XML: You can use this XML with any of our Multi-Series chart. Here is the chart generated by the above XML (created using MSColumn2d.swf chart):
  14. Save option not coming in Scatter.swf

    Hi, Could you please check your scatter.swf chart version once and make sure it is 3.1.0? You can do so by rendering the chart in debug mode.
  15. Hi, Could you please try using use3DLighting='0' attribute in <chart> element?
  16. XML question

    Yes.
  17. Show database text field as ToolTip in C#.net

    Hi, We have released FusionCharts V3.1, Please update your chart.
  18. XML question

    Hi, FusionCharts strictly follow its own XML structure which includes <chart></chart><categories></categories><dataset></dataset>... etc, however you can add yours tag too but its native tag should be there also. Please see below for sample. <chart palette='1' use3DLineShift='1' caption='Hours Accuracy' divLineColor='#000066' toolTipSepChar='' showValues='0' color='0b5ed7' formatNumberScale='0' plotSpacePercent='60' PYAxisName='Hours' SYAxisName='Percent' SYAxisMinValue='0' SYAxisMaxValue='100' > <categories> <category label='Jun 08'/> <category label='Jul 08'/> <category label='Aug 08'/> <category label='Sep 08'/> <category label='Oct 08'/> <category label='Nov 08'/> <category label='Dec 08'/> </categories> <dataset seriesName='Percent' color='0b5ed7' anchorRadius='2' anchorBgColor='69c3da' parentYaxis='S'> <set value='081.4'/> <set value='087.75'/> <set value='093.42'/> <set value='090.76'/> <set value='094.62'/> <set value='083.65'/> <set value='087.4'/> </dataset> <dataset seriesName='PayrollHours' color='c1e3eb'> <set value='114.00'/> <set value='149.75'/> <set value='232.50'/> <set value='145.00'/> <set value='134.75'/> <set value='137.00'/> <set value='152.75'/> </dataset> <dataset seriesName='ProcessHours' color='db8bd5'> <set value='92.8'/> <set value='131.4'/> <set value='217.2'/> <set value='131.6'/> <set value='127.5'/> <set value='114.6'/> <set value='133.5'/> </dataset> <trendLines> <line startValue='94' endValue='85' isTrendZone='1' alpha='50' thickness='6' parentYAxis='S' showOnTop='0' valueOnRight='0' color='#006666' displayvalue='Goal 85% to 94%'/> </trendLines> <academicyear></academicyear> </chart>
  19. getChartFromId not Working?

    Hi, Could you please send us your code to [email protected]?
  20. Specify custom format of value for Grid?

    Hi, Could you please send us your XML, and please also let us know the method (dataXML or dataURL) you are using?
  21. vLine attributes

    Hi, Could you please update your chart and try again.
  22. Javascript error for 'save as image'

    Hi, I am afraid, the docs you are viewing is for MultiSeries Combination 3D Chart (mscombi3d.swf) and the chart you are using is a (pie3d.swf), please see your code below. Also please note that pie chart does not support this features.
  23. Javascript error for 'save as image'

    Hi, I am afraid, view2D and view3D is not exposed to JavaScript externalInterface, meaning you could not use view2D and view3D.
  24. Using FusionCharts with web services

    Hi, There is one option, you can use a relayer code, that will fetch the XML from different domain and after that, you can use this relayer as dataURL to the chart. Please see to this: http://www.fusioncharts.com/forum/Topic3741-27-1.aspx
  25. Show database text field as ToolTip in C#.net

    Hi, Yes, it is possible, you can show comments in tooltip. We can help you but only if you could give us some idea, how you are doing this or the code sample.