Swarnam

Administrators
  • Content count

    1,122
  • Joined

  • Last visited

  • Days Won

    7

Everything posted by Swarnam

  1. Hey, Yes, it is possible to change various settings and properties of an existing chart. You can dynamically update chart's root properties also known as "chart attributes" which are passed through <chart> element in chart XML data on-the-fly. API allows you to update selective properties, internally, FusionCharts XT re-draws the entire chart. You need to use setChartAttribute() function to set a chart attribute. All you need to do is pass the name of the attribute and its new value to this function. Please read more at: http://docs.fusioncharts.com/charts/contents/JavaScript/JS_ChangeChartProperties.html Sample Demo Link: http://docs.fusioncharts.com/charts/Code/JavaScript/Basics/ChangingChartProperties/Change_chart_Theme.html Hope this helps.
  2. Export Data For Heatmap Not Working

    Hey, The latest version of PowerCharts XT was released on 30th January, 2013.
  3. Decimal Problem

    Hey, Yes, it works across all version. Please find the attached screenshot.
  4. Blackberry Z10 3D Pie Chart Problem

    Hi, With regards to rendering issue with Pie chart, we have identified it as an issue. Our developers are working on it. For further developments, we would update the same thread.
  5. Disable Pie Slice

    Hi Leo, Could you please try setting the following attributes in the <chart> element ? Ex: <chart ... slicingDistance='0' enableSlicing='0' > Hope this helps.
  6. Export Data For Heatmap Not Working

    Hi, Can you please try upgrading to the latest version and check if the issue has been resolved? If you are unable to download the latest Licensed version, please drop us mail at [email protected]
  7. Decimal Problem

    Hey, As per your screenshot, you are setting the current render to JavaScript. JavaScript charts does not support the debug mode. I'm unable to replicate the issue. Using the values and the chart attributes defined at your end, the chart renders as expected. Please find the attached screenshot for your reference. <chart caption='Registreret vandforbrug' wMode='window' subCaption='' decimals='3' sDecimals='2' forceDecimals='1' animation='0' showNames='1' numberSuffix=' m3' pieSliceDepth='30' > <set value="11.52"/> <set value="10.1"/> </chart> Hope this helps.
  8. Angular Gauge usage - reverse values

  9. Hey, Welcome to FusionCharts Forum. We are definitely working towards it. We would update the thread once the feature has been implemented.
  10. Angular Gauge usage - reverse values

    Hi Mari, Welcome to FusionCharts Forum. Yes, it is possible to reverse the values by configuring gauge angles. FusionWidgets XT angular gauge allows you to draw the gauge from virtually any start angle to any end angle and in both directions. Can you please make use of "gaugeStartAngle" and "gaugeEndAngle" attribute in the chart element as per your requirement? For example: <<chart lowerLimit="0" upperLimit="100" gaugeStartAngle="0" gaugeEndAngle="180" ...> Please find the attached screenshot for your reference. Hope this helps.
  11. Powerchart Label

    Hey, In a Drag Node chart, it is not possible to add a link attribute to the label element.
  12. Decimal Problem

    Hi, Can you please send us the complete XML code for further testing? The generated XML can be obtained by enabling the debug mode on. To enable the debug mode, please refer to the following link: http://docs.fusioncharts.com/charts/contents/Debug/Window.html
  13. Hi Din, Glad yo know you were able to resolve the issue. Setting "drawAnchors" to 0, the anchors are hidden and the tool tips for the data points will not be displayed and the links will not work either. If you need to hide the anchors but still have tool tip and link, use: $strParam="anchorAlpha=0;"
  14. Export Data For Heatmap Not Working

    Hi, As mentioned earlier, copy data to clipboard feature works for the XML provided without any modifications. Please check with the attached sample code and do let us know if the issue has been resolved. heatmap.zip
  15. Decimal Problem

    Hi, The values retrieved from database source, if it does not consist of any decimal points, it is not possible to add decimals points to the numbers in the chart. For example, if you have numbers on your chart as 12.432, 13.4 and 13 and you set <chart ... decimals='2' >, the numbers will be converted to 12.43, 13.4 and 13 respectively. However, if you have number on your chart as 136, 128 and you set <chart ... decimals='2' >, the numbers will be converted as 136,128 and no decimal points will be added to it. Hope this helps.
  16. Ipad Ios Crash

    Hi Tobias, Welcome to FusionCharts Forum. Yes, it is a known issue and our developers are currently working on it. We would update the thread once the issue has been resolved.
  17. Problems With Charts Not Working When Scrolled Out

    Hey, Can you please provide us with few more information to look into the issue further? >>FusionCharts version >>Charts are rendered as Flash/JavaScript >>Sample code >>Any screenshots
  18. Export Data For Heatmap Not Working

    Hi, Welcome to FusionCharts Forum. Apologies for the delayed response. the export data to clipboard feature is no working, the option on charts exists, but the clipboard is empty, attached a sample xml with this issue. Copy data to clipboard feature works for the XML provided without any modifications. Please Note: This feature is not supported for JavaScript charts. - The labes for x axis are not completelly rendered rendered. Due to large number of column/row defined and reduced chart dimension does not display the X axis data label. Please try increasing the chart dimension, to display the X-axis data label. Hope this helps.
  19. Export As Csv

  20. Error

    Hi, To make use of any multi-lingual characters on the chart, you necessarily need to use UTF-8 encoded XML/JSON. More importantly, the XML/JSON file or stream requires UTF-8 BOM stamp to be present as the very first 3 Bytes of the file. Most of the text editors like Notepad can do this automatically. To know more on how to BOM mark a file, please refer to: http://docs.fusioncharts.com/charts/contents/advanced/special-chars/SpChar.htmlPlease note the two basic thumb rules: For Data URL method - the XML/JSON should be having the BOM stamp For Data String method - the HTML/application file containing the XML/JSON should have the BOM stamp. Hope this helps.
  21. Decimal Problem

    Hi, Setting "decimals" attribute as 2, FusionCharts XT now does not forcibly add the 0 padding to 0.1 to form 0.10, as the trailing 0 is unnecessary. However, if you want your numbers on the chart to have trailing zeroes too, you can set <chart ... forceDecimals='1' > Can you please share the XML/screenshot of the issue faced?
  22. Export As Csv

    Hey, Copying data to clipboard through context menu is not possible using JavaScript charts. For JavaScript charts, make use of FusionCharts JavaScript API for data export, which returns the CSV data as string in your JavaScript code Please find the modified sample which displays the CSV data while the chart finishes rendering. Hope this helps. csv_json_sample.zip
  23. Export As Csv

    Hey, Please find the sample attached to copy JSON data to the clipboard. Hope this helps. csv_json_sample.zip
  24. Export As Csv

    Hey, Welcome to FusionCharts Forum. Yes, using JSON data, it is possible to copy the generated CSV data to clipboard for Flash Chart. To allow export of data using context menu, you need to specify the following in data: { "chart":{ "showexportdatamenuitem":"1" }.... } Hope this helps.