Nabajeet

Members
  • Content count

    152
  • Joined

  • Last visited

Everything posted by Nabajeet

  1. Table chart in fusioncharts.

    Hi, Using grids it is not possible to show multiple columns and scroll facility. However you can create an html table to create a grid. Please check this fiddle for a demo: http://jsfiddle.net/fusioncharts/NZY8w/ You can modify it to accept multi series data.
  2. Hi, Welcome to FusionCharts forum. We have replicated your issue and are looking into it.
  3. Column and Spline

    Hi, It is not possible to represent Spline in combination with MS Column 3D chart or any other chart. Only Multi Series Spline are supported.
  4. Zoomline DynamicAxis

    Hi, Dynamic Axis in Zoom Line is not supported for JavaScript version of FusionCharts.
  5. Hi Shashank, Please note that from version 3.4.0 flash charts has been deprecated, and FusionCharts has shifted to JavaScript only rendering. As such you do not need to include any path of swf file in the contructor, just mentioning the name of the chart shall suffice. Also you can use FusionCharts constructor in place of FusionMaps. You can check the list of map names here: http://docs.fusioncharts.com/tutorial-setup-list-of-maps.html Please check the documentation for maps in version 3.5.0 here: http://docs.fusioncharts.com/tutorial-map-guide-setup.html
  6. Hi Shashank, Please ensure that fusioncharts.js and fusioncharts.maps.js files are present in the same folder. You will also need to paste the relevant map definition files in the fusioncharts/maps/ folder for any specific maps you want to use. Please confirm these issues and also make sure that you are setting the path of fusioncharts.js file properly in the script tag. Also do not forget to clear the browser cache. Please let us know if the problem still exists after following these steps.
  7. Hi, Glad that your problem was resolved.
  8. HI Shashank, Please check out this sample of funnel charts given in this link. https://www.dropbox.com/s/gl8trgierozrguo/Funnel%20Chart.rar?dl=0 In this sample we have tried to replicate your issue and it seems to be working fine. Please check this sample and let us know about your feedback.
  9. mouse scroll

    Hi, Welcome to FusionCharts Forum. Scrolling a Gantt chart using the mouse wheel is not supported. Sorry for any inconvenience.
  10. Indentation in Gantt's Process' labels

    Hi, Glad that your issue was resolved.
  11. Mark Special points on a line graph

    Hi, Welcome to FusionCharts forum, You can control the visibility of individual anchors using anchorAlpa attribute inside the set element of the JSON/XML data. { "label": "1", "value": "100", "anchorAlpha":"0", }, will hide the anchor. While { "label": "2", "value": "120", "anchorAlpha":"100", }, will show the anchor. You can also add the anchorAlpha globally in the chart element, and override it in the set element. For more information on anchors, you can refer to: http://docs.fusioncharts.com/tutorial-configuring-your-chart-anchors-and-lines.html
  12. Indentation in Gantt's Process' labels

    Hi, Welcome to FusionCharts Forum. You can use align to position the process labels to left right or center. "process": [ { "label": "Clear site", "id": "1", "align":"left" }, { "label": "Excavate Foundation", "id": "2", "hoverBandColor": "#e44a00", "hoverBandAlpha": "40", "align":"center" } ]
  13. Hi, ​1) the nodes are drawn out side of the chart that means I can not see the border edge of the node. Ans: Please give the x and y positions of the node with respect to the xAxisMinValue/ xAxisMaxValue and yAxisMinValue/ yAxisMaxValue respectively​ 2) I can't differentiate the from and to connectors I mean no gap between the connectors and color.​ ​Ans: This is because of the space constraints, arrangement of nodes properly will remove this issue. 3) I can't add border to a specific node. Ans: As of now this is not possible​ ​4) I can't align icon and text side by side, there is the provision for adding, the options for aligning are top,middle and bottom, there is no options for right and left. Ans: Right and left alignment is not possible. Please check this fiddle for a demo on posi​tioning your nodes properly. http://jsfiddle.net/nabajeet_fusioncharts/cjpr0Lfh/
  14. Bar chart shape

    Hi, Please find the XML version of the fiddle in the link. http://jsfiddle.net/nabajeet_fusioncharts/kjcm5jf1/2/
  15. Hi Ramesh, Can you send us your XML/JSON data so that we can test it in our side?
  16. Annotations on ZoomLine not working

    Hi, ​ It is only for Zoomline charts that some features are deprecated ​in JavaScript versions for performance reasons, rest charts shall be working fine. Sorry for inconvenience.
  17. Drilldown to a table ?

    Hi, Yes, it is possible to drilldown to show the student info. Just add the path of your PHP file where the processing needs to be done in the link attribute. { "label": "A+", "value": "19", "link": "process.php?grade=A+" } ​ the grade will be passed to the PHP file where you can retrieve the data and drilldown to show the student's data.​
  18. Annotations on ZoomLine not working

    ​Hi, Macro $dataset.0.set shall not work in zoomline charts because all the data points are not shown in the chart initially, points will be visible only after zooming search for a point so it is not possible to select a particular point to draw annotations.
  19. Hi, Alternate H Grid seems to be working fine for dual y axis charts. You can check the demo here: http://jsfiddle.net/nabajeet_fusioncharts/8ghm9ujg/ If its not working for you please send a sample of your XML/JSON data so that we can check it in our side.
  20. Hi, Sorry for your inconvenience, but font color can only be set globally for Drag Node Charts. The only workaround shall be to use annotations but you must position them yourself according to the nodes which shall be cumbersome, also they shall not move with the nodes while dragging. We shall also check the feasibility of adding the feature to our wish list.
  21. Bar chart shape

    Hi, ​ In FusionCharts its not possible to replace the bars with any image internally, however you can use annotation​s to achieve the same and use macros to position the image. You should position and scale the image according to your requirements, it is not done internally. Please check the fiddle for a demo: http://jsfiddle.net/nabajeet_fusioncharts/kjcm5jf1/1/
  22. Drag Note Caption

    Hi, Can you send us your XML/JSON sample along with your chart dimensions, so that we can replicate your issue on our side.
  23. We have replicated your problem on our side, as of now you should try setting the y co-ordinate statically. http://jsfiddle.net/nabajeet_fusioncharts/apffc1y3/ We shall get back to you with a solution as soon as possible.
  24. Bar chart shape

    Hi Gayathri, If you want to hide the column then set alpha=0 in the set of that particular column. <set value='15000.00' alpha='0'/>