• Content count

    49
  • Joined

  • Last visited

About [email protected]

  • Rank
    Advanced Member
  1. Thanks a lot Ayan, With the latest version the tool-tip overlapping issue is resolved. Amol.
  2. Thanks for replying Ayan, I have modified the json with the format given by you but still issue persists. PFA with the latest Json. performanceTrendsZoomline_modified.txt
  3. Hi Ayan, Thanks for your reply. Currently we are using FusionChart 3.3.1 in which the JSFiddle's code is not working. Could you please try with attached json at your end in which data points are very close to each other. Please change attached file extension to .json Thanks, Amol zoomline.txt
  4. Hi Team, I am using Javascript Driven ZoomLine Fusion Chart . Where the Anchor tooltip are overlapping each other. So that I am not able to see the values which are close to each other. Could you please help me out. Please find attached screen shot .
  5. Hello Team, I am trying to convert AngularGauge.swf to javascript AngularGauge I have done it for other chart just by changing the .swf chart name with javascript chart name , that worked well . but for AngularGauge.swf rendering login is implemented in a following way , I got stuck in how to convert this chart in javascript driven chart. <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" data="AngularGauge" type="application/x-shockwave-flash" width="390" height="290" id="gaugeChart"> <param name="allowScriptAccess" value="always" /> <param name="wmode" value="opaque" /> <param name="movie" value="./fusioncharts/AngularGauge.swf" /> <param name="FlashVars" value="ChartNoDataText=<%=resource.getMessage(request.getLocale(),"FPD.Error.Insufficient.Data")%>&LoadDataErrorText= <%=resource.getMessage(request.getLocale(),"FPD.Error.Insufficient.Data")%>&dataURL=./ForecastPerformanceDashboardServlet? Gauge=Gauge" /> <param name="quality" value="high" /> <param name="AllowFullScreen" value="1" /> <embed src="AngularGauge.swf" quality="high" flashVars="ChartNoDataText=<%=resource.getMessage(request.getLocale(),"FPD.Error.Insufficient.Data")%>&LoadDataErrorText= <%=resource.getMessage(request.getLocale(),"FPD.Error.Insufficient.Data")%>&dataURL=./ForecastPerformanceDashboardServlet? Gauge=Gauge" width="390" height="290" wmode="transparent" allowScriptAccess="always" type="application/x-shockwave-flash" pluginspage="https://www.macromedia.com/go/getflashplayer"/> </object> Could you please help me to convert this type of .swf chart in Javascript Chart. Thanks In Advanced #Amol.
  6. Hi, Currently we are using 3.3.1 version. Finally I fixed issue using some work around as below. I am setting the exportoptions div position when user clicked on export Icon ... function FC_Rendered(DOMId) { if(DOMId=='Chart2Id'){ $(".red-buttons-135").on("click", function(event){ var t=$(".red-buttons-135").offset().top; $("svg:eq(3)").css("top",t+20); }); } if(DOMId=='Chart1Id'){ $(".red-button-30").on("click", function(event){ var t=$(".red-button-30").offset().top; $("svg:eq(2)").css("top",t+20); }); } } Thanks Amol,
  7. Hello Vishalika, Initially graph and export button options was working fine , but when I applied scroll(overflow-y=auto;height:100%) to the screens parent div,the stickiness of the export options was gone.When scrolling the screen the and clicking on export con the export options div is displaying at the bottom . Is there any way that I can bind javascript method on click of the export button clicked, if I get that I can set potion of exports options div as per export button position. Thanks, Amol Chaudhari.
  8. Hello Team, I am using javascript driven quadrant chart.populating it with Json, I have have enabled export button (for PDF,SVN..). There are two graphs on my screen, when there is a scroll bar appearing on a screen the export option's div is shifting at the bottom. Could you please help me to fix this issue, how how to stick export options div to the export button always. attaching screen-shot.
  9. Hello Team, I am using MSCombiDY2D javascript driven chart, which current showing current year's and Last year's data. There is a checkbox on a screen for include last year data, so when user will uncheck is I want to Hide Last Years Data Bar from the graph and when User selects a checkbox then I want to show The last Years Data bar on the graph again. Could you please help me out how can I hide or Show Bar from the chart. Attaching Sample Json Thanks In Advance !!! Amol. MSCombiDY2D .json.txt
  10. Hello Team, I am using javascript driven MSLine chart, I want to provide a Export to Excel feature for my graph. So I am using getDataAsCSV() which gives me CSV data and I am writing data in Excel,which is working perfectly fine. But in my graph I am plotting few data point(Special Events) on same Y -axis value (ex:0.6) only X-axis value are changing for it, for such data point I am showing the name of Special event on tooltip of that data point. For Export to excel I want to export that Event name which is present in tool tip , but I am not getting that value in getDataAsCSV(). Could you please suggest me the way how can I get tooltext value in CSV ? or is there any other way to set additional attributes for data point level in graph Json which is not impacting on Graph GUI and is available in getDataAsCSV(); Please find attachment for My Json (Search for Special Event) sample response.txt
  11. Hello Team, I am using javascript driven ZoomLine Chart,for which I want to display vTrendsLine, I am using following json String for it. "vtrendlines": { "line": [ { "startindex": "50", "displayalways": "1", "displayvalue": "Split", "valueontop": "1" } ] } but its not displaying on chart. When I am running the same json with .swf file ,the graph shows the vTrend line. Could you please help me out ...I want to show Vtrends Line in Javascript Driven ZoomLine chart. PFA for my json (pls change the extension to json) Any Help is Appreciated ... ZoomLineChartStr.json.txt
  12. Hi Swarnam, Thanks for the reply, I have downloaded the version mentioned by you, but I am not able to see data on graph for the json I mentioned in above post. do I need to change any attributes mentioned in My json. The HTML code which I am using <html> <head> <title>FusionCharts XT</title> <script type="text/javascript" src="fusioncharts/FusionCharts.js"></script> </head> <body> <div id="chartContainer" style="heigh:500px;">FusionCharts XT will load here!</div> <script type="text/javascript"> ); var myChart = new FusionCharts( "Scatter", "myChartId", "900", "500", "0" ); myChart.setJSONUrl("sample1.json"); myChart.render("chartContainer"); </script> </body> </html>