Sanjukta

Members
  • Content count

    2,213
  • Joined

  • Last visited

  • Days Won

    14

Everything posted by Sanjukta

  1. How To Implement Histograms In Fusion Chart Xt

    Hi Indranil, Welcome to FusionCharts Forum! Please note that natively FusionCharts does not support Histogram. However, you can create a similar Histogram using the Column 2D chart with "plotSpacePercent" set to '0' in the <chart> element of the XML. Also, the Combination chart that would support plotting Column and Line plot together can also solve your requirement. Ref.- http://www.fusioncharts.com/demos/gallery/combination-single-y/chart.asp?id=mscombi2d_2 In case you have any other requirement, please send us the screenshot of the same. Hope this helps.
  2. Primary And Seciondary Y Axis Values Plotting Issue

    Hi Kranthi, Could you please try removing the attribute "numDivLines='0' " in the <chart> element to let the divisional lines be visible to show the values on both the axis? Hope this helps.
  3. Fusioncharts On Https, Mixed Content Warning

    Hi, Could you please download the latest version of FusionCharts, i.e, FusionCharts XT Service Release 5 which contains a number of fixes and improvements that includes this? Please upgrade your current version to the latest and see if this resolves the issue. Hope this helps.
  4. Y Axis Ranking

    HI, Please note that if your chart shows a "No data to display" message, it could be the following scenarios: >> Your XML data doesn't contain any data that could be plotted by FusionCharts XT. In this case, your XML just contains the <chart> or <dataset> tags without any data between them. >> You might be using a single-series chart SWF and providing data in multi-series format or vice-versa. In this case too, you'll get a "No data to display" message. Could you please refer to the supported XML format of the Inverse Column chart with the help of the following link and see if this helps? Ref.- http://docs.fusioncharts.com/powercharts/Contents/?ChartSS/InverseColumn.htm Hope this helps.
  5. Bug In Fusioncharts.hc.js

    Hi, Thanks for the suggestion. We have made a note of the same and shall update our Development team on this. Thank you for your continued patience and support.
  6. Query Results For Pie Chart

    Hi, Could you please send us the details of the error you are receiving in the browser console? Also, please send us the scaled-down sample or a Live URL so that we might test it. Awaiting your reply.
  7. Hi Raghu, We sincerely apologize for the delay. We are looking into this and shall get back to you at the earliest. Thank you for your continued patience and support.
  8. Html5 Charts With Older Jquery

    Hi, We tested your URL and found that you are using a very older version of jQuery. We generally recommend jquery 1.4 or above to render FusionCharts perfectly. In case you do not have any issues, could you please upgrade your jQuery version or use the "jquery.min.js" while loading your application? Please make sure that you have included the "jquery.min.js" even before "FusionCharts.js" in the <head> tag. Ex: <head> ... <script language="JavaScript" src="jquery.min.js"></script> <script language="JavaScript" src="FusionCharts.js"></script> </head> Hope this helps.
  9. Drilldown Map Displaying Another Chart

    Hi, Glad that your issue is resolved! Happy FusionCharting!
  10. Drilldown Map Displaying Another Chart

    Hi, Could you please let us know what is displayed on the address bar when the error "The Webpage cannot be displayed" is shown? Also, please confirm that you are not using any older versions of FusionMaps. The LinkedChart feature is supported since FusionMaps XT. Looking forward to your reply.
  11. Hi Malay, I had previously mentioned that explicitly you cannot specify colors for each quadrant, as of now. But you can select the combination of colors in such a way, that the mixing of one color with another, provides a distinctly different color in all the quadrants. This needs to be done as per your requirement by mixing the colors. Hope this helps.
  12. Hi, Welcome to FusionCharts Forum! Could you please confirm if you would like to display Single-series data or Multi-series data, i.e, a single line plot or multiple line plots, as per your requirement, as & when needed, using a Multi-series Line chart, by feeding the data in the corresponding format (single/multiple <dataset> elements), dynamically? In case yes, currently this is not possible. Also, if I was unable to comprehend the query correctly, could you please specify your requirement a bit elaborately so that I can assist you further on this? Awaiting your reply.
  13. Hi Smita, We are looking into this and shall get back to you at the earliest. Thank you for your continued patience and support.
  14. Hi Smita, Please note that you are providing the link for the "xmlurl" in the LinkedChart as the following: Ex: <set value="409090" link="newchart-xmlurl-http://dev.wavereporting.com/dboard/getchart/chart/rev/flag/2/sdate/2012-01-01/edate/2012-12-31/mth/Jan/yr/2012" tooltext="2012, Jan, 409 090" /> But, it seems that the link "http://dev.wavereporting.com/dboard/getchart/chart/rev/flag/2/sdate/2012-01-01/edate/2012-12-31/mth/Jan/yr/2012" does not contain any XML data, hence, the linked chart is showing "No data to display" message due to unavailability of the data. Could you please check with the same and confirm? Awaiting your reply.
  15. Drilldown Map Displaying Another Chart

    Hi, Yes, it is possible to drill-down from a map entity to a chart in order to display the data, as per your requirement. In the attached sample, we have demonstrated the drill-down feature from a map to the charts. Could you please confirm if you are trying to track the chart and create & pass the XML data accordingly? In case yes, this is natively not possible. However, you can achieve this with the help of a query string and pass the chart type. Please note that the link for each continent is defined in the following format: link='newchart:Pie3D.swf-xmlurl-data1.xml' The link can be broken down into: newChart prefix: used to indicate that it must invoke LinkedChart. The type of chart or the name of the chart SWF file (Pie3D.swf here)is added separated by a colon (:). xmlurl indicates that URL method is used to specify data for linked chart; in case of JSON data, jsonurl is used. data1.xml is the URL specifying the data path for the linked chart that opens when this entity is clicked. For further details on the above, please refer to the following link. Ref.- http://docs.fusionch...s/Overview.html Also, please try keeping the Chart SWF files in another folder ("Chart" folder) inside the main folder where the HTML file is placed. Also, please specify the folder path in the following code snippet in the HTML. FusionCharts("MyMapId").configureLink ( { "swfSrcPath" : "Chart/" }, 0); Please check with the attached sample for your reference and see if this helps. Looking forward to your feedback. DriilDown_MapAndChart.zip
  16. Data Not Found In Box And Whisker Charts

    Hey, We are glad that your issue is resolved. Happy FusionCharting!
  17. Hi All, We apologize for the inconvenience. As mentioned previously, the Scatter chart does not support specifying colors explicitly for each of the Quadrant, as of now. However, a possible work-around to achieve this is to use the <vTrendLines> and <trendLines> element that would help you display 4 different colors in the 4 quadrants created by setting "drawQuadrant='1' " in the <chart> element of the XML. Please note that you would need to adjust the "startValue" and "endValue" for the vertical and horizontal trendlines respectively, as per your requirement. I have tried to create a simple sample with this work-around which might of some assistance. Please check with the attached screenshot and the sample XML for your reference. Hope this helps. ScatterQuadrantColor.xml
  18. Data Not Found In Box And Whisker Charts

    Hi Mansi, Please check with the attached sample Box and Whisker chart in the JavaScript version. Also, please make sure that you have kept "FusionCharts.HC.js", "FusionCharts.HC.PowerCharts.js" and "jquery.min.js" in the same folder as "FusionCharts.js" while rendering the JavaScript chart.. These files are present in the "Charts" folder of the PowerCharts XT Download Pack. It is very important that you keep these files in the same folder as "FusionCharts.js". You do not need to load these files explicitly in HTML. "FusionCharts.js" automatically takes care of the loading. Hope this helps. BoxandWhisker_JSChart.zip
  19. Hi, I am afraid, we are unable to receive the attached files that you might have sent. Please re-send it to [email protected]. Also, could you please confirm if you are using FusionCharts XT in Flex applications? Awaiting your reply.
  20. Data Not Found In Box And Whisker Charts

    Hi, It seems you might be using an older version of PowerCharts which did not support the JavaScript fallback for Box and Whisker chart. Could you please upgrade your current version to the latest, i.e, PowerCharts XT (v3.2.1) that supports that JavaScript Fallback for Box and Whisker, Kagi, Heat Map, Drag Node, and a few other charts? More details at: Ref.- http://docs.fusionch...WhatsNew32.html Hope this helps.
  21. Labels Getting Mangled In Fusion Charts Xt

    Hi,. We have 2 solution for your with respect to this issue. 1. Please try applying the attribute "xtLabelManagement='0' " and "centerYAxisName='0' " in the <chart> element to disable the FusionCharts XT Label management as well shift the Y-axis name position to avoid overlapping. But this would not be much in case you are rendering JavaScript charts and using longer labels. Ex: <chart ... xtLabelManagement='0' centerYAxisName='0' > 2. Since you are using a Line chart, the slopes are of more importance and significance than the canvas borders. Hence, please try applying a larger value for "canvasPadding", say '30' in the <chart> element along with "xtLabelManagement" set to '0', that would push the line plot away from the canvas to avoid overlapping, even if the labels are unwrapped and long. Ex: <chart ... xtLabelManagement='0' canvasPadding='30' > Hope this helps.
  22. Make The Y-Axis Bold

    Hey Chris, Glad that you had resolved the issue. Happy FusionCharting!
  23. Hi, Please send us the relevant XML/JSON data for the Scatter chart so that we can replicate the issue and test it. Awaiting your reply.
  24. Combination Charts (Dual Y)

    Hi, 1. Could you please confirm if you are looking for plotting the same data against both Primary (left) and Secondary (Right) axis? In case yes, you would need to provide similar data for both the Area and the Line plots for both the axes. 2. Also, in case you are trying to display the data that is currently on the primary axis to show on the secondary axis, instead of what is displayed now, please try setting "parentYAxis='S'" for the Area plot. The "Line"{ plot would be plotted against the left axis at this point. Ex: <dataset ... renderAs='LINE' > ... </dataset> <dataset ... renderAs='AREA' parentYAxis='S' > ... </dataset> If we are unable to comprehend your query and the above reply is not what you are looking for, please specify your requirement a bit elaborately so that we can assist you further. Hope this helps.
  25. Hi, Please note that FusionCharts XT supports Stacked Column 2D chart which has a specific XML/JSON data format that needs to be passed to the chart in order to display it. Please refer to the following link for the supported data format and attributes supported by Stacked Column 2D chart. Ref.- http://docs.fusioncharts.com/charts/contents/?ChartSS/StCol2D.html Hope this helps.