Ayan Bhadury

Moderators
  • Content count

    655
  • Joined

  • Last visited

Posts posted by Ayan Bhadury


  1. Hi,

    Thanks for replying back.

    For any multi series chart, the number of data in the "catergories" object should be same as the number of data in the "dataset" object. So if you want to plot all your data's in the chart, please increase the number of data in the "category" object however you can set   "showlabel":"0",  "showverticalline": "0" for a particular "category" object to achieve your goal.

    For further reference regarding this please check this link

    http://jsfiddle.net/ayanbhaduryfc/1LLkc4x7/

    But according to your mock image which you provided, it will be great if you go for multi-series spline chart.
    You can find the example in this fiddle link
    http://jsfiddle.net/ayanbhaduryfc/eqq4h/49/

    Hope this helps.

  2. Hi,

     
    The chart is rendering perfectly.
     
    Since your x values precision is quite high, so the vertical lines for high precision values (like 0.0001, 0.001, 0.01 ) , these are getting placed very close to each other taking the scale of 0 to 10.
     
    So it seems only one vertical line is placed there.

    To see the different vertical lines are actually getting placed increase the chart width to very large size.

    Please refer to this fiddle for further reference 
    http://jsfiddle.net/bp8yavzp/3/

  3. 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.
     
     
    For further reference regarding implementation of custom theme please visit here
     
    Hope this will help you.

  4. 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.