Ayan Bhadury

Moderators
  • Content count

    655
  • Joined

  • Last visited

Everything posted by Ayan Bhadury

  1. Apply scroll from one chart to multiple charts

    Hi, Yes its possible to make the scroll position to end. Use this attribute "scrollToEnd":"1". For further reference regarding this please check this sample fiddle link http://jsfiddle.net/t3SKj/135/ Hope this helps.
  2. Apply scroll from one chart to multiple charts

    Hi, I am afraid there is no such property available in fusioncharts right now. However, you can use scroll bar property for each individual charts. Hope this helps.
  3. Zoomline rendering problem while using yaxisminValue

    Hi, The issue has been resolved. Kindly re-download the latest version. For further reference please visit this fiddle link http://jsfiddle.net/ayanbhaduryfc/v60znb4c/88/ Hope this helps.
  4. Setting Colours for all charts in my app

    Hi, Thanks for the query. Yes, its possible to make use of same set of colors across different chart by implementing a custom theme file according to your requirements. For further reference regarding FusionCharts custom theme file please visit the following link. http://www.fusioncharts.com/dev/advanced-chart-configurations/theme-manager/creating-new-themes.html For further reference regarding implementation of custom theme please visit here. Hope this will help you.
  5. Gantt Chart display Miletsone only

    Hi, You are always welcome. Glad to know that you have managed to solve your purpose. Happy FusionCharting!
  6. Gantt Chart display Miletsone only

    Thanks for the query. Yes it is possible to suppress the display of tasks in a Gantt chart so only the milestones appear. By setting the following task object attribute in the chart element: "alpha" : "0" "borderalpha" : "0" "hoverFillAlpha" : "0" ​And for the milestones you can create the milestones object and create your milestones. However, one drawback would be tool text would be visible where the task has been hidden. You can bypass this by setting "showToolTip" : "0" in the chart attribute. You can check this fiddle link for example : http://jsfiddle.net/ayanbhaduryfc/z79b74k3/121/ Hope this helps.
  7. rotate labels in multi-level pie chart

    Thanks for the query. To place rotated labels using annotations you can refer to this link for detailed view http://jsfiddle.net/ayanbhaduryfc/J7svx/453/ For more info regarding annotations please visit this page, http://www.fusioncharts.com/dev/advanced-chart-configurations/annotations/introduction.html Hope this helps.