-
Content count
943 -
Joined
-
Last visited
-
Days Won
3
Everything posted by srividya_sharma
-
Hi How about this? <script type="text/javascript"> var chartIds = new Array("<%=rwId1%>","<%=rwId2%>","<%=rwId3%>"); // or you can create the array dynamically, if required. function ExportMyCharts() { var i=0; for(i=0; i<chartIds.length; i++) { chartObject = getChartFromId(chartIds[i]<%=rwId%>); if( chartObject.hasRendered() ) {chartObject.exportChart({exportFormat:'PNG'});} } } </script > In the above code, I just stored the chartIds in an array. 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, Glad that it worked out for you. Thanks for taking the time to post back the exact attributes that helped you. I am sure it will help other users. Srividya -
How to add space between two coulmns of different group for same month using multiseries graph?
srividya_sharma replied to ganesh gupta's topic in Suggestions & Requests
Hi Ganesh, I just thought of a work around... You could add empty dataset between datasets like this: <dataset> </dataset> This will give some space between two columns. Hope this helps. Srividya -
Can you please replace the % character in the xml with its encoded form %25 and try once? Thanks Srividya
-
Bug with displayValue of set tag in Stacked Column 2D Chart
srividya_sharma replied to a topic in Bug Reports
This feature of showing text for each data item instead of numerical value was added in v3.1. Please see: http://www.fusioncharts.com/docs/Contents/WhatsNew.html Hope this helps. Srividya -
Problem adding displayValue attribute to
srividya_sharma replied to jbutley's topic in General usage
Could you please try to upgrade to latest version and try once? This feature of showing text for each data item instead of numerical value was added in v3.1. Please see: http://www.fusioncharts.com/docs/Contents/WhatsNew.html Hope this helps. Srividya -
Bug with displayValue of set tag in Stacked Column 2D Chart
srividya_sharma replied to a topic in Bug Reports
Can you please check the version of FusionCharts you are using. You can view the version by turning on the debugMode. Thanks. -
PowerCharts displayValue attribute
srividya_sharma replied to [email protected]'s topic in PowerCharts XT
Hi When you turn on the debugMode, you can view the version of swf file you are using. Hope this helps. Srividya -
Bug with displayValue of set tag in Stacked Column 2D Chart
srividya_sharma replied to a topic in Bug Reports
Hi Sandeep, Just noticed, can you please use the encoded form of % as %25 in your xml and try once. Might help. Srividya -
Hi You could store the chartIds in a javascript array and then go through each array element, get the chartObject corresponding to it and export that chart. Hope this helps. Srividya
-
Hi Dhiraj Can you specify when you are getting the error? What is the exact error you are getting? Thanks Srividya
-
Hi Please notice that I have changed the function to use the dynamic id: <%=rwId%> Please do similarly. Hope this helps. Srividya
-
How to: Dynamically adjust how large data to show on scroll chart
srividya_sharma replied to 2nd Billericay Scouts's topic in General usage
Hi We are really happy to know that you fixed the problem. Can you please share with us what the problem with the xml was and how you fixed it? Thanks Srividya -
Hi Dave, Can you share the xml with us? Thanks Srividya
-
Hi Just after embedding all the charts as you showed in the your previous post, you can put the javascript code <script type="text/javascript"> function ExportMyCharts() { var chartObject1 = getChartFromId('<%=rwId%>'); if( chartObject1.hasRendered() ) chartObject1.exportChart(); // export another chart var chartObject2 = getChartFromId('<%=rwId2%>'); if( chartObject2.hasRendered() ) chartObject2.exportChart(); } </script> I hope the number of charts being shown is static. Hope this helps. Srividya
-
Can you show me the piece of code where they are dynamically generated? Waiting for you reply.
-
Is It Possible To Add Notes/Remarks To LineGraph DataPoints?
srividya_sharma replied to Kiran Kumar's topic in FusionCharts and JSP
Hi Kiran I can't think of a way to show it as a balloon instead of tooltip. Work arounds... anybody? Srividya -
chart.hasRendered is not a function
srividya_sharma replied to macsig's topic in Javascript Problems
Hi Can you post the javascript code where you are encountering this problem? Thanks Srividya -
Yes that is possible. You can export multiple charts to their individual image files with one button click. Call a javascript function on the click of the button, which would initiate export of multiple charts. <script type="text/javascript"> function ExportMyCharts() { var chartObject1 = getChartFromId('myChart1'); if( chartObject1.hasRendered() ) chartObject1.exportChart(); // export another chart var chartObject2 = getChartFromId('myChart2'); if( chartObject2.hasRendered() ) chartObject2.exportChart(); } </script> Hope this helps. Srividya
-
Is It Possible To Add Notes/Remarks To LineGraph DataPoints?
srividya_sharma replied to Kiran Kumar's topic in FusionCharts and JSP
Hi In your jsp, where you are constructing the xml, please check if the point is outside the limits, if it is outside the limits, then add the link attribute to that point. (set) In the link attribute call the javascript function which handles the notes/remarks. Hope this is what you wanted to know. Srividya -
what I have to set as exportHandler?
srividya_sharma replied to macsig's topic in FusionCharts and Ruby on Rails
Hi :exportHandler => '/Fusioncharts/fc_exporter/index' is correct as long as you have fc_exporter_controller.rb with action named index in app/controllers/fusioncharts folder. Please modify the following property: @@SAVEPATH = "./public/charts" Hope this works. Srividya -
ActionController::InvalidAuthenticityToken in Fusioncharts/fc exporterController#index
srividya_sharma replied to macsig's topic in FusionCharts and Ruby on Rails
How about using :except and specify the particular action which handles export? -
ActionController::InvalidAuthenticityToken in Fusioncharts/fc exporterController#index
srividya_sharma replied to macsig's topic in FusionCharts and Ruby on Rails
Hi This has something to do with protect_from_forgery token in the Controller. Please see if you need it. If you don't need it, then remove it. hope this helps Srividya -
Hi Vijaya, Please see http://www.fusioncharts.com/maps/docs/Contents/MapSS/Europewithcountries.html Scotland internal id is 047 Hope this is what you wanted. Srividya
-
Hi Mona, I am unable to pin-point the cause of problem, because the page involves several things. We might have to create a simpler example involving only the links and the charts and try it out. Would you be able to do that? ( say, create 2 jsps - one with the charts, the other, providing some info) Thanks Srividya