babuu
Members-
Content count
25 -
Joined
-
Last visited
About babuu
-
Rank
Forum Member
Profile Information
-
Gender
Male
-
Please help me......
-
Please help on this
-
Hi Team, How to javascript click evet in legend of PIE CHAR? Please help me. Thanks Babu
-
Problem With Redirect Php Site From Our Site(While Download Images)
babuu replied to babuu's topic in Collabion Charts for SharePoint
Thank you very much for response. port:8088 worked on php site for "http://localhost:8088/export/charts/index.php" ,This url used in xml for exporting images. java application Url.. http://localhost/app...oye_profile.jsp. thanks babu -
Problem With Redirect Php Site From Our Site(While Download Images)
babuu replied to babuu's topic in Collabion Charts for SharePoint
header("Location: http://localhost/app/employe_profile.jsp"); //This is local url -
Problem With Redirect Php Site From Our Site(While Download Images)
babuu replied to babuu's topic in Collabion Charts for SharePoint
Thanks for reply. I have used header() in php but page refreshed while click download button. when click download button,we are able saving images in local path but struct at php site. Please find attachment for reference. Thanks Babu -
Hey, Please clear cache for all browsers. Earlier i got this error. Thanks
-
Hey, Please check it once (MSCombiDY2D.swf). http://docs.fusioncharts.com/charts/contents/guide-for-web-developers/csnet/CS_BasicExample.html thanks babu
-
Hey Please active line FusionCharts.setCurrentRenderer('JavaScript'); in code ,if use javascript chart (without flash) of latest version works fine. Thanks Babu
-
Setdataxml And Setdataurl And Redirect Prb
babuu replied to babuu's topic in FusionCharts and ASP.NET
Thanks for response. Please give me your mailid, i am sending sample app to ur mail . Thanks Babu -
Hi, We are used pure javascript fusion charts(without flash).Working fine. we are using latest of fusioncharts. 1.we have implemented exporting images in our application by using php(Highcharts).Here one problem facing how to controling php site after saving images in localpath,its going php site how to solve this. 2.what is diffrent between SetDataXML and setDataURL? Problems are below please check it.Please help on these. Here we are observered. setDataXML-- one fired DrawComplete while click buuton. See once below code FusionCharts.setCurrentRenderer('JavaScript'); var myChart = new FusionCharts(path, "myChart123", width, height,'0', '1'); myChart.setDataXML(xml.join("")); myChart.render(divId); FusionCharts("myChart123").addEventListener ("DrawComplete" , myChartListener ); }; setDataURL-- everytime fired DrawComplete while click buuton. FusionCharts.setCurrentRenderer('JavaScript'); var myChart = new FusionCharts(path, "myChart123", width, height,'0', '1'); myChart.setDataURL("/app/p4p/sample.xml"); myChart.render(divId); FusionCharts("myChart123").addEventListener ("DrawComplete" , myChartListener ); }; Please help me. Thanks Babu
-
Problem With Redirect Php Site From Our Site(While Download Images)
babuu replied to babuu's topic in Collabion Charts for SharePoint
Please suggest any one... -
Hey muralikanth, Could u provide sample for that. Thanks babu
-
Problem With Redirect Php Site From Our Site(While Download Images)
babuu replied to babuu's topic in Collabion Charts for SharePoint
Please help on this. -
Hey, Added Listener while rendering.find below code . function myChartListener(eventObject, argumentsObject) { /// add code for popup } /// render code FusionCharts.setCurrentRenderer('JavaScript'); var chartId = "ChartId"+ Math.floor(Math.random() * (new Date()).getTime() + 1); var chiefExecutiveChart = new FusionCharts(path, chartId, width,height,'0', '1'); chiefExecutiveChart.setDataXML(xml.join("")); chiefExecutiveChart.render(divId); FusionCharts(chartId).addEventListener("click", myChartListener); thanks babu