srividya_sharma

Members
  • Content count

    943
  • Joined

  • Last visited

  • Days Won

    3

Everything posted by srividya_sharma

  1. Resizing Pie Chart

    Hi Try setting a value for the attribute pieRadius. Hope this helps. Srividya Sharma
  2. Vertical Line In Chart

    Hi Grischa, Can you give a screen-shot of what exactly you are looking for? I am not sure I understand your requirement correctly. Srividya
  3. Tool Tip For Linear Gauge

    Hi, You could try using Annotations for this purpose though it won't work like a tool tip. You could even try to create a legend at the bottom using Annotations. Take a look at : http://www.fusioncharts.com/widgets/docs/Contents/Ann_Rectangle.html Srividya
  4. Realtime Chart Ignoring Refreshinterval Setting?

    Hi From the documentation, Ref: http://www.fusioncharts.com/widgets/docs/Contents/DSC_Intervals.html Hope this clarifies your question. Srividya Sharma
  5. Chart Legend Sits On Top Of X-Axis Labels?

    Hi Please try adjusting the value for the attribute legendPadding. For instance, try setting, legendPadding='50' . Hope this works out for you. Srividya Sharma
  6. Multiple Charts/xmls From Single Php

    Hi, You code the php containing the 3 charts taking the Factory Id as parameter. Then you launch this php passingFactoryId as parameter to it on click from the Pie chart. This would serve your purpose. Hope this helps. Srividya Sharma
  7. Ie6 Issue

    Hi, Are you working on Windows or Linux? Srividya
  8. Fusioncharts Rails 3 Sample Application

    You are most welcome. That gives me motivation to do better work. Please feel free to post any issues that you face with this. If you have made any improvement to it, please post it for the benefit of others. Thanks. Happy New Year !
  9. Hover Text Does Not Match Labels

    Hi By default, FusionCharts calculates the percent from the values provided. Since you are already giving percent values, please use showPercentInToolTip='0' to disable showing percentage ( of the already percent ) value in tooltip. Hope this helps. Srividya Sharma
  10. Does The Fusionchart Support Data Like This

    Hi Yes, the type of chart you are looking for, is supported in FusionCharts. (MSCombi2D.swf - 2D Single Y Combination chart ) Please take a look at the 8th chart in the gallery here: http://www.fusioncharts.com/gallery/Category.asp?CombinationSingleY (counting 2 per row, 4th row 2nd chart) When you click on this chart, you can view the xml or json required by the chart too. Hope this meets your requirement. Srividya Sharma
  11. Chartobject.exportchart Is Not A Function

    Hi, You could do the following: 1. Please verify that registerWithJS is on. 2. Please verify the version of FusionCharts.js you are using. Srividya Sharma Data Visualization Made Easy With FusionCharts!!
  12. Donut Chart

    You may be looking for the multi-level Pie chart from PowerCharts. Please take a look at http://www.fusioncharts.com/PowerCharts/charts/multi-level-pie/ Hope this helps. Srividya Sharma
  13. 406 Not Acceptable Error

    Please ensure that you are setting the format for which the action needs to respond_to. If this is not the cause of the problem, then please share your code, this will help me give better suggestions. Srividya Sharma Data Visualization Made Easy With FusionCharts!
  14. Currently, the only way to do this is to generate the iages out of the charts and then embed these images into the pdf. Hope this helps.
  15. Dynamically update fusion charts

    Hi After loading the chart for the first time, if you want to update it, please call setDataURL or setDataXML from javascript. Hope this helps.
  16. Javascript call from JSNI

    Add the following method in your GWT Canvas class: public native String embedFusionCharts(String chartParams)/*-{ chart = new $wnd.FusionCharts("FusionCharts/Column3D.swf", "chart1Id", "800", "400", "0", "1"); chart.setDataURL("Data/Data.xml"); chart.render("chartDiv"); }-*/; Just call the above embedFusionCharts method with the required parameters from where you want to embed it. Please note that I have hardcoded the params here. You would need to put in the chartParams variable instead. In your html, you would have to include FusionCharts.js in the head section. This code has been tested with SmartGWT. Hope this helps one and all. Keep FusionCharting! Srividya
  17. Fusion charts with rich faces.

    Yes, it is possible to use FusionCharts in Richfaces. Please use the tag library created for this purpose. Please download the same from here : http://forum.fusioncharts.com/topic/4077-fusioncharts-jsf-all-tag-libraries-samples/ For using dataXML please use the appropriate attribute.
  18. Problem With Windowmode

    Hi Can you please try adding bgAlpha='0' to the xml once? Hope this helps. Thanks Srividya
  19. Fusioncharts Swing Integration

    Hi everybody, We finally have a working example for FusionCharts in a Java Swing-based desktop application. FusionCharts Swing application requires the JFlashPlayer and DJNativeSwing libraries for embedding flash in swing components. Please note that this example works only in Windows environment becuase of the JFlashPlayer limitation. Apart from these jars, the application also requires the following FusionCharts jar files: 1. fcswing.jar 2. fchelper.jar 3. fcexporter.jar 4. fcexporthandler-swing.jar Please place the jflashplayer jar and DJNativeSwingjar files in the lib folder before testing. Please read the guidelines for setup in Readme.txt Please run FusionChartsSwingMenu to view a basic menu to launch the examples. Please view the documentation by opening Documentation > HtmlDocs > index.html Please note that these examples are basic ones with no great look and feel. Please try this out and if you face any issues, get in touch. Your feedback is valuable to us. Please feel free to post your comments and suggestions on this. References: http://www.jpackages.com/jflashplayer/ and http://djproject.sourceforge.net/ns/ Srividya Keep FusionCharting! FusionChartsSwingDemov3_2Nov242010.zip
  20. Integrate FusionCharts in Swing Application

    Hi Sylvain, I have posted the latest swing application with lot of new features and a bit of documentation using FusionCharts v3.2 here: http://forum.fusioncharts.com/topic/7982-fusioncharts-swing-integration/ Please take a look at this. I hope it works out well for you. Srividya Keep asking and keep getting more out of FusionCharts every day!
  21. Simple Chart With Servlet

    Hi I found this code in archives. Please try it out. I haven't tested it recently. String chartStr = FusionChartsHelper.createChart("FusionCharts/Column2D.swf", "Data/Data.xml", "", "ChartFromServlet", 600, 300, false, false); StringBuffer chartHTML= new StringBuffer(); chartHTML.append("<HTML>"); chartHTML.append("<HEAD>"); chartHTML.append("<TITLE>FusionCharts - Export Example</TITLE>"); chartHTML.append("<script LANGUAGE='Javascript' SRC='FusionCharts/FusionCharts.js'></SCRIPT>"); chartHTML.append("</HEAD>"); chartHTML.append("<BODY>"); chartHTML.append(" <CENTER>"); chartHTML.append(" <h2>FusionCharts Example</h2>"); chartHTML.append("<h4>From servlet</h4>"); chartHTML.append(chartStr); chartHTML.append("<BR>"); chartHTML.append("</CENTER>"); chartHTML.append("</BODY>"); chartHTML.append("</HTML>"); PrintWriter out = response.getWriter(); out.write(chartHTML.substring(0)); The class FusionChartsHelper is present in com.fusioncharts package. Import it in your servlet. Hope this helps.
  22. FusionCharts JSF-All Tag Libraries & Samples

    Hello Vasanth, Please find attached JSF 1.2 Sample war and taglib jar compiled with java5. This should work for you. Hope this helps. Srividya FusionChartsJSF1_2SampleAppv1_4_1.zip
  23. On load of Chart Save at Server side

    Hello Ravi Krish, Please take a look at the ButtonExportExample at http://www.fusioncharts.com/forum/Topic27616-33-1.aspx#bm28873 Please change the path to .swf, .jsp files, before testing. The server-side export is initiated from button click. You can modify it to initiate once the chart renders. [ by writing a FC_Rendered(DOMId) function ] like this: function FC_Rendered ( DOMId ) { // invoke export on the chart here } Hope this helps
  24. FusionCharts JSF-All Tag Libraries & Samples

    Seems like your server is trying to validate before deploying. Please try to replace the faces-config.xml in the jar/ META-INF folder with the one I have attached here. Hope this helps. Srividya faces-config.xml
  25. FusionCharts JSF-All Tag Libraries & Samples

    Hi Can you please confirm that you have JSF 1.2 jars in your classpath and that you are using java >=5 Srividya