srividya_sharma

Members
  • Content count

    943
  • Joined

  • Last visited

  • Days Won

    3

Everything posted by srividya_sharma

  1. clickURL Issue

    Hi Nik Could you please turn on the registerWithJS property and try once? hope this helps Srividya
  2. Problem with bgSWF background image

    Hi Scott You are most welcome. Glad that you were able to solve it. Srividya
  3. Encoding problem in Mozilla

    Hi xmlData.append(utf8BomStr+"<?xml version='1.0' encoding='UTF-8'?>"); Please don't append BOM to the xml. You would need to output the BOM to the output stream. Hope this helps. Srividya
  4. Multiple chart in one page

    Can you please give unique chartId for each chart? If you tell me the technology you are using, I can give you specific guidelines. Hope this helps.
  5. Export charts to image/PDF

    Hi You can get it as shown: <set name='0-30' value='25'/> name attribute can take any string. Hope this helps. Srividya
  6. Hello Pawan, Please check the version of FusionCharts you are using. The export functionality is applicable for all the charts of FusionCharts latest version(version 3.1.1). To check the version of the chart, please drag and drop the file in IE and append ?debugMode=1 to the adddress bar. The debugMode will show the version of the chart. To upgrade: All you have to do is go to http://www.fusioncharts.com/puc/ and log-in with the Login name and Password provided by us to you / your company while selling the license. Hope this helps. Srividya
  7. Hi Venkat, Can you try to set attribute decimals='0' in the chart tag? Hope this helps. Srividya
  8. Export charts to image/PDF

    Hi Please change the following property in the WEB-INF/classes/fusioncharts_export.properties file. #Path where the export handler files are located #Please note that the resource path should be relative to #web application root directory #By default the path is "/Resources/" RESOURCEPATH=/ExportHandlers/JSP/Resources/ That comment in the download package was wrong. Please put the path relative to the web application root. Hope this helps. Thanks. Srividya
  9. Problem with bgSWF background image

    Hi Scott Can you please set canvasBgAlpha='30' or a lesser number and see if it becomes transparent enough to show your background? Hope this helps. Srividya
  10. FusionCharts behaviour in IE

    Hi Mona, You could use the encodeDataURL function from com.fusioncharts.FusionChartsHelper class as follows: String strDataURL = FusionChartsHelper.encodeDataURL("PieData.jsp?metricId=2","true",response); The first parameter is the URL. Second param: whether to add no cache to the URL or not Thrid param is the reponse object. Also, you would not need to write the code for getting the current time and appending it to the URL. This function does it all. Hope this helps. Srividya
  11. FusionCharts behaviour in IE

    Hi Mona, You would have to encode the URL so that all the parameters are passed. Srividya
  12. Update chart split result multiple charts

    You are most welcome. Always here to help. Srividya Keep FusionCharting !
  13. FusionCharts behaviour in IE

    Hi Mona, Looks like you have not added a random number as a value to the parameter noCache in the url. Please do something like this in java: Calendar cal = Calendar.getInstance(); String dataFormat ="hh_mm_ss_SSSS"; SimpleDateFormat sdf = new SimpleDateFormat(dateFormat); String currentTime = sdf.format(cal.getTime()); Now append this currentTime to the url like this: String csfBulb="bulbChart_CSF.jsp?metricId="+metricId+"&noCache="+currentTime; Hope this helps. Srividya
  14. displaying numbers on top using StackedColumn2D

    Hi You could try to use MSColumn2D. Hope this helps. Srividya
  15. Invalid XML Data When Using & in Axis Name

    Hi Can you tell us the operating system you are using? Thanks.
  16. JSF Events

    Good work around, I should say. I cannot think of any other alternative as of now. Thanks for posting. Srividya
  17. Setting Y Axis Values

    Hi Please use yAxisMinValue and yAxisMaxValue attributes to get this. yAxisMinValue='0' and yAxisMaxValue='100' Hope this helps. Srividya
  18. Strange situation

    Hi Please ensure that <?php echo $card_data->id;?>Id prints out a unique id. Hope this helps Srividya
  19. Update chart split result multiple charts

    Hi Please send another parameter to update.jsp, based on which it can out.println the specific xml only. Like this: var url1= "update.jsp?year=" +year+"&month="+month+"&xmlCount=1"; var url2= "update.jsp?year=" +year+"&month="+month+"&xmlCount=2"; Then set the urls, like this, chartObj.setDataURL(url1); chartObj1.setDataURL(url2); Hope this helps Srividya
  20. JSF Events

    Hi I am not sure how it would work. I would have to try it out once. Will keep you posted. Thanks for your patience Srividya
  21. FusionCharts behaviour in IE

    Hi Mona, The doc file that you attached contains an image. Can you please attach the source code as a text or zip the jsp file and upload? Thanks Srividya
  22. save as PDF and image on jsp

    Hi I have seen the directory structure and the properties file. Does the export folder have write permissions? Can you tell me what javascript error you are getting?
  23. How to set yAxisMinValue

    Hi About getting the xml... there are 2 ways, 1. You can get the xml from the log file in rails. 2. If you are using v3 version of FusionCharts, then enable the debugMode to see the debug Window, where you can see the xml. Hope this helps. Srividya
  24. FusionChart not Display Arabic

    You are welcome. Really glad that it worked for you. Srividya Keep FusionCharting!
  25. FusionChart not Display Arabic

    Also, please note the following from the docs: FusionCharts supports only left-to-right languages as of now. It doesn't have native support for right-to-left languages like Hebrew. So, if you want to use Hebrew with FusionCharts, you'll have to programmatically change the text sequence and then provide the data to FusionCharts. Hope this helps.