ganiganesh

Members
  • Content count

    38
  • Joined

  • Last visited

Everything posted by ganiganesh

  1. Hi Team, i need to do server side export of multiple charts so i had followed two ways one with J2EE and second one with Jsp but nothing is working for me.could you please suggest me which one i should follow? fusion charts version : FusionCharts XT(v3.2.2) SR5 java : jdk6 Thanks in advance Ganesh
  2. Server Side Export Of Fusion Charts

    render_image.bmp
  3. Server Side Export Of Fusion Charts

    Hi Haritha, chars are rendering by showing the status after that request is going to the /FCExporter and gettting 404 page not found web.xml contains <servlet> <display-name>FCExporter</display-name> <servlet-name>FCExporter</servlet-name> <servlet-class>com.fusioncharts.exporter.servlet.FCExporter</servlet-class> </servlet> <servlet-mapping> <servlet-name>FCExporter</servlet-name> <url-pattern>/FCExporter</url-pattern> </servlet-mapping> and i included two jar files as well... Thanks Ganesh
  4. Remove exported chart from the component

    Hi Sanjukta, please let me know how can i solve this problem with batch export (removing old entry from batch export) in fusion chart version 3.2 SR5 Thanks Ganesh
  5. Server Side Export Of Fusion Charts

    Hi Sashi, i am trying to export flash charts using jsp.i had followed the steps mentioned in the given link. step 1) copied two jar files fcexporter.jar and fcexporthandler.jar 2) created fusioncharts_export.properties (configuration file) in classes folder 3) copied below code in web.xml <servlet> <display-name>FCExporter</display-name> <servlet-name>FCExporter</servlet-name> <servlet-class>com.fusioncharts.exporter.servlet.FCExporter</servlet-class> <load-on-startup>1</load-on-startup> </servlet> <servlet-mapping> <servlet-name>FCExporter</servlet-name> <url-pattern>/jsp/fg/FCExporter</url-pattern> </servlet-mapping> 4) FCExporter.jsp in jsp folder 5) added attributes in chart exportEnabled='1' exportAtClient='0' exportAction='download' exportHandler='/jsp/fg/FCExporter.jsp' 6) created chart_images folder in Webcontent for save path. its not giving any error i.e. nothing is happening after rendering the charts. please find the attached files for your reference. please let me know if i done any mistake in this process Thanks Ganesh ServerExport.zip
  6. Combi Dual Y

    MSCombiDy2D.bmp Hi Team, i am facing two issues with the attached chart. 1) i want % symbol should be displayed in bold in Y axis values and also for anchor values (given styles for yaxis values but its not applying for %) 2) Bydefault all values are being displayed outside the bar if dont use the attribute placevaluesinside='1'. my concern is that if i get bar with max value then getting values inside the bar. is there anyway to control that? Thanks in advance Ganesh
  7. Bubble Chart

    Hi Team, My requirement is to plot the attached chart. can you please guide me which swf file, what kind of chart i should go for? Thanks in advance Ganesh
  8. Bubble Chart

    Hi Team, Could you please some one give response for my query? Thanks Ganesh
  9. Hi Team, i am trying to do batch export to pdf with the simple example but its not working... please find the attachment which contains required files.. Thanks in advance Ganesh Kumar CH ExportPDF.zip
  10. Batchexport Is Not Working

    Hi, its working fine after setup the Flash Player Global security setting in my browser. Thanks for your response
  11. Hi Team, need help on to generate MSLine chat with PYaxis and SYaxis Names and values. Please do the need full on this. Regards Ganesh
  12. Mscombidualy Chart

    Hi Team, i am trying to plot the mscombidualy chart same as attached one but how can i get shown markers which are on blue and violet plotted lines ? Thanks in advance Ganesh Chart_image.bmp
  13. Hi Team, I have an issue with fusionchats to export the charts in to excel files .If it is possible let me know whichi version is used to export the charts and list me all the possible charts to export. Thanks & Regards Ganesh
  14. Hi Team, i have two queries in msline chart (PFA) 1) Is there anyway to get automated exponential curve/trend lines in chart depends upon the plotted lines data? ex: we are plotting trend lines and exponential curve which are built in in ms excel based on the existing line data 2)how to get square box in red color line like showed in attached chart? i tried with attribute anchorSides='4' which is giving me the anchors same as plotted in blue color rather than square boxes. thanks in advance Ganesh
  15. Export To Excel,ppt,pdf

    Hi Team, how can i export fusion chart component to excel /ppt/pdf? Thanks in advance Ganesh
  16. Two Queries In Msline Chart

    Please find the attached XML file and chart MSLine Chart.bmp XML.xml
  17. Chart With Table Below

    Hi Team, My requirement is that i would like to get the table below the fusion chart as shown in attached file.please suggest me how can i achieve this? Thanks in advance
  18. Hi Team, i will render one chart using below ajax function in chartdiv which is in jsp page. function ajaxCurrentLink(divID, url,obj) { var dataContainer = document.getElementById(divID); dojo.io.bind( { url: url, content: { ajax:true, engine: 'dojo' }, load:function(type, data, event) { //alert(data); dataContainer.innerHTML = data; //alert(dataContainer.innerHTML); if(obj=='fusionchart'){ var chart = new FusionCharts("../content/charts/MSColumn3D.swf", "ChartIdS2", "850", "280", "0", "0"); //alert("setting XML"); chart.setDataXML(data); //alert("Rendering..."); chart.render("chartdiv"); } } }); } my requirement is that i would like to render two charts in one div i.e. chartdiv by getting two xmls seperated by some special character then i l split it and assign it to two charts. after getting two xmls ready is there any way to render two different charts in one div in jsp
  19. Hi Team, i had provided whole chart as hotspot using clickURL and also given link attribute for dataplot. In this case, clickURL is working but not link attribute. Is there any way link attribut would work though i use clickURL attribute? can i have zoom option for individual chart? (like 50%,100%)
  20. Hi Team, please find the attached file.i would like to implement the same in my web application so please suggest me how to proceed? My Idea: i will generate the middle chart and i can provide the onclick option for bar to get the other 4 charts but my requirement is that i should point out the values like shown in screenshot your inputs are so valuable for me please let me know in detail thanks in advance
  21. Hi Team, My requirement is that i have around 7 charts in one div for which i need to provide print option. if i open it in new window i would be getting only static content but not charts so i need to pass fusioncharts.js file in javascript function itself as below function PrintDiv() { var divToPrint = document.getElementById('print_content'); var head="<html><head><script language='JavaScript' src='../content/jscript/charts/demo/FusionCharts.js'></script></head><body onload='window.print()'>"; var popupWin = window.open('', '_blank', 'width=1300,height=300'); popupWin.document.open(); popupWin.document.write(head+divToPrint.innerHTML + '</html>'); popupWin.document.close(); } but getting script error so please suggest how can i provide print option for the only body of html in which i m displaying 7 charts (please find the attached image) thanks in advance Ganesh Kumar CH MyCharts.bmp
  22. Print Option For Div Contains 7 Charts

    hope print manager too wont work as per my requirement because its coded like window.print()
  23. Print Option For Div Contains 7 Charts

    Hi, My requirement is that i want the same view like mycharts.jpeg but not like webpage.jpeg which i attached in print. i noticed that by using batch export if i save as image all 7 charts would be appearing as one by one in a single row which is not fine for me. i want the same view like mycharts.jpeg if i save as image please suggest me. MyCharts.bmp
  24. Print Option For Div Contains 7 Charts

    HI, if i use printManger do i get only chart content in same way as it appears in my web page with out menu tab? and also i have tried batch export as a image/pdf for my web page which contains 7 charts but my concern is that not getting charts how it appears in my webpage, getting in sequence of source charts please advice me...
  25. Removing Chartid

    Hi Team, how can i delete the older chartid for charts? For example if i use one chartid like myChartID in chart var myChart = new FusionCharts("AngularGauge.swf","myChartID","265", "135", "0", "0"); i should use uniqueid in fusion charts XT so if i use myChartID for one more chart its giving error. but i am creating more charts dynamically using same id like myChartID my idea is that can i delete chartid before using the same chartid for other chart? please suggest me