-
Content count
1,122 -
Joined
-
Last visited
-
Days Won
7
Everything posted by Swarnam
-
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.
-
Hey, The latest version of PowerCharts XT was released on 30th January, 2013.
-
Hey, Yes, it works across all version. Please find the attached screenshot.
-
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.
-
Hi Leo, Could you please try setting the following attributes in the <chart> element ? Ex: <chart ... slicingDistance='0' enableSlicing='0' > Hope this helps.
-
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]
-
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.
-
Angular Gauge usage - reverse values
Swarnam replied to FusionCharts Support's topic in General usage
-
Hey, Welcome to FusionCharts Forum. We are definitely working towards it. We would update the thread once the feature has been implemented.
-
Angular Gauge usage - reverse values
Swarnam replied to FusionCharts Support's topic in General usage
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. -
Hey, In a Drag Node chart, it is not possible to add a link attribute to the label element.
-
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
-
Show Values Only When Mouseover? Msline2D Graph
Swarnam replied to Din Revah's topic in FusionCharts and PHP
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;" -
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
-
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.
-
How To Filter On Content Types W/in A List
Swarnam replied to jhbrooks's topic in Collabion Charts for SharePoint
-
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.
-
Problems With Charts Not Working When Scrolled Out
Swarnam replied to MatiasLaino's topic in Miscellaneous
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 -
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.
-
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.
-
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?
-
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
-
Hey, Please find the sample attached to copy JSON data to the clipboard. Hope this helps. csv_json_sample.zip
-
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.