Shrabanee

Members
  • Content count

    34
  • Joined

  • Last visited

Everything posted by Shrabanee

  1. Hi I am trying to set annotations in the chart, when there is no data present to show for piechart. For all the browsers it is working fine, except in Firefox. I am updating the chart using 'setJSONData', when there is no data to show I am trying to show an annotation. But it is not coming up in firefox. As you can see in the above image, it is not showing any annoation. I tried inspecting and this is what I got Seems Element is there but it is not properly positioned. Annonation I am using is as below: "annotations": { "width": "200", "height": "300", "autoScale": "1", "groups": [ { "id": "user-images", "items": [ { "id": "dyn-label", "type": "text", "fillcolor": "#cdcdcd", "font":"lato", "fontsize": "20", "text": "test message to show", "bold": "1", "wrap": "1", "wrapWidth": "300", "x": "$canvasCenterX", "y": "$canvasCenterY-50", "scaleText":"1" } ] } ] } Can someone help me with this issue? What am I doing wrong? Thanks
  2. Hey @Akash Biswas I know it is working in firefox when I am using your code in the fiddle directly. As you can see in the screenshot above, "dy" value for 'tspan' has some negative value. I am not able to understand what is going wrong. While rendering the chart, this was working properly but after changing the code from rerendering to update, it is not working and it is happening in firefox only. I have tried by adding a blank annotation and then updating it when I want to show annotation, that helped me when there is no data to show on the charts. But when I have some data to show and along with that, if I am trying to show annotation I am getting issue. In the above image, I am trying to show a text along with the data and it is not coming. For this above image, legends are not coming, if the chart was blank initially and then I am trying to show it with some data using the update code. Can you tell me what I might be doing wrong for which this dy value became negative with the update code and only happening in firefox? Thanks
  3. Hi, So I am using 'dataPlotClick' event. Which is not showing hand cursor on hover of the bars. Is there any flag I can use to show it? I know it will work when we are using 'link'. But I don't really want to use it. Does anyone have any solution for this? Thanks
  4. Hi @Ayan Bhadury Can you give me some code snippet to show hand cursor for 3d pie chart?
  5. Hi @Akash Biswas, That will work for my requirement. Will it work for any chart?
  6. Hi, I don't want to show count on the bar for stack column chart, when the value is 0. As you can see in the above image, 0 is shown in the bottom, which does not make any sense to show, when the count is 0. It is confusing as well for the user. Is there any way to hide it? Thanks.
  7. Hi, I am trying to use 'link' but unable to make it work when function is not defined in the <script> tag in html. Please refer https://jsfiddle.net/em5Lv48r/3/ Clicking on Foods will show alert but clicking on Apparels will give error in console as 'hello1 is not defined'. Why link functionality is not working with 'hello1' function which is defined in the js part?
  8. Hi, I want to stop an ongoing render of some chart. Is that possible to do?
  9. How can I stop an on going render?

    Hi @Ayan Bhadury, Please see the fiddle https://jsfiddle.net/em5Lv48r/2/ The animation is not smooth. It is flickering when y-axis range is getting changed. Which is not looking good. Any solution for this?
  10. How can I stop an on going render?

    Ok @Ayan Bhadury That explains the attributes. I am planning to use these attributes, but in future, it should not just break. When can we get this attributes stable and how do I know when it is done fully?
  11. How can I stop an on going render?

    Hi @Ayan Bhadury Can you explain to me about "transposeAnimDuration" & "transposeAnimation" ? Or if you have any document I can refer to, can you share that with me? I am not getting any documentation for those.
  12. Hi, I was testing chart in all the browsers. So I figured out it is taking 5 seconds to load a single chart. Is fusionchart not compatible with edge browser?
  13. So it is again a workaround @Ayan Bhadury. If I will move the second chart up and the first chart down, it will show hand cursor for the chart which is there in the first position. I did not find it much useful as we have multiple charts, order of each chart can be changed by the user. Maybe somehow I have to use link only to show hand cursor till the time you guys are giving hand cursor for dataPlotClick.
  14. Hi @Ayan Bhadury Please refer https://jsfiddle.net/7av3otg7/3/ I want hand cursor only in the first pie chart. So I have added your given code for that chart. But as you can see, it is showing hand cursor for the 2nd pie chart also. How can I prevent that?
  15. @Ayan Bhadury please give me some solution for below issue. We have multiple charts in one view. While using the code you have given, it is adding hand cursor to all of the bar charts in the view. How can I show hand cursor on the specific chart where we have enabled dataPlotClick?
  16. @Ayan Bhadury I have tried the workaround but it did not help me fully. We have multiple charts in one view. While using the code you have given, it is adding hand cursor to all of the bar charts in the view, which is not right. How can I make it work for only a specific chart instead of adding it for all of them? How will it work for pie chart? Right now it is only working on the bar charts.
  17. Hi @Ayan Bhadury , I will try this out. But I think showing hand cursor should be available for 'dataPlotClick' by default as it will work with click. Will it work in all the browsers?
  18. How can I stop an on going render?

    That worked. Thanks @Ayan Bhadury
  19. How can I stop an on going render?

    @Ayan Bhadury what is the value I need to give for transposeAnimationDuration? Can you show me some sample data for this?
  20. How can I stop an on going render?

    Hi @Ayan Bhadury, So I have used "transposeAnimation" but it is not giving a smooth animation as the initial animation. Any delay of animation or anything I can use along with 'transposeAnimation' to make the animation smoother?
  21. How can I stop an on going render?

    Hi @Ayan Bhadury , So what about browser compatibility? Will it work properly in all the recent browsers?
  22. How can I stop an on going render?

    Hey @Ayan Bhadury Thanks. That will help me. Is the flag available for all the chart types or only pie and doughnut chart?
  23. How can I stop an on going render?

    Hi @Ayan Bhadury Thanks for the solution you gave. I tried using this before also. It is not doing the animation on updating data using setJSONData or SetChartData API. Is there any way to show the animation in this situation?
  24. How can I stop an on going render?

    Hi @Ayan Bhadury Let me try to explain it. So we are showing a pie chart. We have a setting for the chart as radio buttons. When user will change the setting we will send a request to the server to get data and then we are rendering the chart again. If a user is continuously changing the setting the chart is loading again and again, which is causing some error in console. So I want to prevent rendering a chart if the user is changing the setting before chart can finish loading.
  25. Hi @Ayan Bhadury Thanks for your response. Let me check if that is the case here. I will try the changes you mentioned as well.