Haritha
Members-
Content count
489 -
Joined
-
Last visited
Everything posted by Haritha
-
Hi, This feature shall be made available in the next upcoming major release of FusionCharts. We shall update this thread when the release comes out. Hope this helps.
-
Regarding a chart with ajax utility
Haritha replied to ananthkumar.ks's topic in Suggestions & Requests
Hi, It is not possible to plot the chart of a given day first and then obtain the data and plot the data of chart to yesterday when the user drags the chart, as of now. Hope this helps. -
Hi, Please refer the post http://forum.fusioncharts.com/topic/15526-issue-in-ie10-download-black-and-white-image/
-
issue in Ie10- Download Black and white image
Haritha replied to Guna Sekhar's topic in Javascript Problems
Hi, Could you please let us know if you are rendering the chart using "fc:render" method or using "FusionCharts()" method of JavaScript? Also, please let us know if you are exporting using "export.api3" or using your own server to export charts. We tried to export a JavaScript variant of Column 2D chart using "export.api3" on IE 10 and it seems to be exported as expected. Awaiting your response. -
Error: Invalid negative value for <rect> attribute width="-1"
Haritha replied to ghost's topic in Using FusionWidgets XT
Hi, Apologies for delay. We would require more time. But will try to get back to you as soon as possible. -
-
-
Regarding a chart with ajax utility
Haritha replied to ananthkumar.ks's topic in Suggestions & Requests
Hi Ananth, Welcome to FusionCharts Forum If you want the chart to get updated when the data is present/modified (can check this is your code by coordinating with your database) then you may use Real-time charts. Real-time charts update their data in certain intervals and the new data on the chart is made to get appended to the existing data on the chart. Please have a look at :http://www.fusioncharts.com/demos/gallery/real-time-charts/chart.asp?id=realtime_1 For your requirement of chart having macroscopic view (250 to 300) and showing microscopic view of data on selection of particular data ( 220 to 250) and scaling of x-axis according to the change, then you may use Zoom Line chart. Try selecting and dragging a particular area on the chart from : http://www.fusioncharts.com/demos/gallery/zoom-line/chart.asp?id=zoomline_3 Hope this helps. -
Hi, If you want both the map and a list of countries in the map to be displayed on click on Africa, then you need to use JavaScript functions as links instead of using Linked charts. In the link attribute call a function, which renders an Africa map (in another div) and also displays a table with a list of countries in Africa. Eg. <entity id='Africa' color='6699FF' link='JavaScript:myJS()' /> For more information on using JavaScript functions as links, refer: http://docs.fusioncharts.com/maps/Contents/DrillDown/JavaScript.html Hope this helps.
-
Hi Rory, Glad that it helped. You may get back to us whenever you need help. Happy FusionCharting!
-
Hi, Do you want to show the list of countries in Africa when you click on Africa in World map? If yes, do you want to show the list beside the map or on the map, thus replacing the map ? Also, please let us know if you want to show list in some tabular format. Awaiting your response.
-
Hi, 1. I want to add table tag data with fusion chart to exporter PDF file ..please give me any help. >> It is not possible to export FusionCharts along with other contents present in the page using FusionCharts API. However, you may use third party tools like wkhtmltopdf,PhantomJS etc which use shell scripting for exporting the page. Please refer our blog post: http://blog.fusioncharts.com/2013/03/how-to-save-charts-as-images-at-server-side/ 2. one more question is Fusion Chart Report is working in Internet Explorer browser or not.. because i am not tested i am using ubuntu os so please tell me. >> Chart rendered on IE browser can be exported to PDF file. Hope this helps.
-
Hi Rory, It is possible to obtain the chart data as pure SVG using the function "getSVGString()". Ref. FusionCharts("myChartId").ref.getSVGString() Awaiting your feedback.
-
Error: Invalid negative value for <rect> attribute width="-1"
Haritha replied to ghost's topic in Using FusionWidgets XT
Hi, Thanks for your inputs. I shall look into it and get back to you soon. -
Hi, It is not possible to save PDF to server's machine (or client) automatically using Batch export of charts, as of now. Hope this helps.
-
Hi Gaurav, Could you please attach your XML/JSON data along with FusionCharts version that you are using? Also, code snippet of chart rendering would be helpful in understanding the problem. Awaiting your response.
-
Hi, It is not possible to achieve the desired functionality using the jars fcexporter.jar,fcexporthandler.jar and fchelper.jar, as of now. But you may use "FCExporter.swf" and "FusionChartsExportComponent.js" to batch export all charts to a single PDF. Please refer the link : http://docs.fusioncharts.com/charts/contents/index.html?exporting-image/batch-exporting/ECBatchOverview.html Hope this helps.
-
Hi Jacob, It is not possible to make each label visible only when the mouse hovers over the Vtrendline as of now. As a workaround, you may display the trend label by using "valueOnTop" as 0 for first and as 1 for the second so that one value gets displayed on top of the trend line and the other at the bottom. Eg. <vTrendlines> <line startIndex='5' endIndex='5' displayValue='First' valueOnTop='0'/> <line startIndex='6' endIndex='6' displayValue='Second' valueOnTop='1'/> </vTrendlines> Hope this helps.
-
Hi, Please try using "FC_ChartUpdated" function which gets called when a chart is updated. Ref. function FC_ChartUpdated (DOMId) { alert ( DOMId + " chart has been updated." ); myfunc(); } You may call your function inside this function. However, please note that this function gets called each time the chart is updated. Hope this helps.
-
Hi, 1)i want to export each chart to PDF which is displayed on browser? Ans: Please find the attached sample modified according to your requirement. In the sample attached, a button named "Export to PDF" is present. Clicking on this button lets you export the chart to PDF file. 2) Using FusionCharts API you have any example as per my requierment. Ans: All the samples attached in this post use FusionCharts API to export Flash charts. Hope this helps. ExportDemo.zip
-
Hi, Could you please let us know about the problem you are facing while using FusionCharts in your Spring application? Awaiting your response.
-
Hi, Please find the response below: 1. i facing the problem with fusion chart...My problem is when i run the jsp page it displays one ore more fusion chart report on browser..in that page i want to place one button which is Convert to PDF after all fusion chart report add to PDF...so please give me any solution for that..... >> Do you want to export each chart to PDF or want to do batch export of all charts in a page to PDF? 2. Hi haritha there is any solution in fusion chart like JFreeChart in which we can generate chart report as per our data and easily add to PDF with java... in same way it is possible with fusionchart report >> FusionCharts provides its own API for exporting charts. The jars fcexporter.jar,fcexporthandler.jar and fchelper.jar are used to export Flash variant of FusionCharts in Java. These Jars have been created to aid the users of FusionCharts to export charts easily in J2EE applications.
-
Error: Invalid negative value for <rect> attribute width="-1"
Haritha replied to ghost's topic in Using FusionWidgets XT
Hi, Welcome to FusionCharts Forum. We tried to create a similar sample and it appears that this error occurs when your date format in the start and end attributes of task element does not conform to the date format specified in the chart element. For Eg. If your date format is dateFormat='MM-dd-yyyy HH:mm:ss.fff' then, if your task element has a date as follows then an error is thrown : Incorrect: <task start='11-12-2013' end='11-12-2013' /> Correct : <task start='11-12-2013 02:04:31.500' end='11-12-2013 03:04:31.750' /> <task start='11/12/2013 04:04:31.400' end='11/12/2013 05:04:31.800' /> Please check if your task elements have only the date and not the time and make changes accordingly. Hope this helps. -
Hi, We could replicate the problem of extra vertical lines visible on the plot of StackedColumn3D chart. Since 'wkhtmltopdf' is a third party tool and we would require some time to investigate on the same. We shall get back to you soon.
-
Hi, Apologies for inconvenience. Please find the modified "FCExporter.jsp" present in the attached Zip file. Please replace this file with an old one and let us know your feedback. FCExporter.zip