-
Content count
943 -
Joined
-
Last visited
-
Days Won
3
Everything posted by srividya_sharma
-
Hi Nik Could you please turn on the registerWithJS property and try once? hope this helps Srividya
-
Hi Scott You are most welcome. Glad that you were able to solve it. Srividya
-
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
-
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.
-
Export charts to image/PDF
srividya_sharma replied to srividya_sharma's topic in FusionCharts and JSP
Hi You can get it as shown: <set name='0-30' value='25'/> name attribute can take any string. Hope this helps. Srividya -
I can't see the any export format when right click the mouse
srividya_sharma replied to maks's topic in Javascript Problems
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 -
Yaxis default range needs to be integers and not decimals - when no data for chart - MSColumn3DLineDY
srividya_sharma replied to a topic in General usage
Hi Venkat, Can you try to set attribute decimals='0' in the chart tag? Hope this helps. Srividya -
Export charts to image/PDF
srividya_sharma replied to srividya_sharma's topic in FusionCharts and JSP
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 -
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
-
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
-
Hi Mona, You would have to encode the URL so that all the parameters are passed. Srividya
-
Update chart split result multiple charts
srividya_sharma replied to emilyanro's topic in FusionCharts and PHP
You are most welcome. Always here to help. Srividya Keep FusionCharting ! -
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
-
displaying numbers on top using StackedColumn2D
srividya_sharma replied to srividya_sharma's topic in General usage
Hi You could try to use MSColumn2D. Hope this helps. Srividya -
Hi Can you tell us the operating system you are using? Thanks.
-
Good work around, I should say. I cannot think of any other alternative as of now. Thanks for posting. Srividya
-
Hi Please use yAxisMinValue and yAxisMaxValue attributes to get this. yAxisMinValue='0' and yAxisMaxValue='100' Hope this helps. Srividya
-
Hi Please ensure that <?php echo $card_data->id;?>Id prints out a unique id. Hope this helps Srividya
-
Update chart split result multiple charts
srividya_sharma replied to emilyanro's topic in FusionCharts and PHP
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 -
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
-
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
-
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?
-
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
-
FusionChart not Display Arabic
srividya_sharma replied to srividya_sharma's topic in FusionCharts and JSP
You are welcome. Really glad that it worked for you. Srividya Keep FusionCharting! -
FusionChart not Display Arabic
srividya_sharma replied to srividya_sharma's topic in FusionCharts and JSP
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.