karthik_k2

Members
  • Content count

    43
  • Joined

  • Last visited

Everything posted by karthik_k2

  1. Multi-Series Doughnut

    Hi, I am using Fusion Charts version v3.2.2. As far as my knowledge is concerned, fusion charts support doughnut charts. Is it possible to have a multi-series(multi-level) doughnut chart by any chance? I have attached a copy of the chart which I would like to configure. Looking for your directions.
  2. Hi, I have a column chart. I want to change only the tooltext of the data elements of the column charts after some action, say onclick of a button. Is it possible to do that? If so kindly let me know how to do that. Thanks in advance.
  3. Exporting Pie Chart

    Hi, I am exporting fusion charts by generating SVG of the charts. Its working fine with all the other charts except pie and donut. There is no problem in exporting the charts. But in the resulting pdf file, the data elements of the charts (pie and donut) do not have any colours. Please find the image attached with this post and help me solve this. Thanks in advance.
  4. Exporting Pie Chart

    Thanks :-)
  5. Exporting Pie Chart

    Hi Team, I heard that this issue has been fixed. Kindly share the version no. or if it is the service release pls do share it too. Thanks.
  6. Exporting Pie Chart

    Its not yet fixed. I am hoping to get the fix in the next release. Atleast thats what I heard.
  7. Hi, My intention is to invoke a javascript function when i click on a data element of the fusion chart. So I included "link" : j-onClick() along with the label and value attributes of the data. The problem which I am getting now is that the javascript function that is supposed to be invoked after i click on the data element is getting invoked as soon as the chart is instantiated. Please help me fix this. Thanks in advance.
  8. Javascript Functions As Links

    Hi Ragav, If raising click event anywhere in your div is what your need is, then I dont think FusionCharts support that. FusionCharts support click on the data element of the chart only. I can suggest you to make this happen using normal javascript itself. Please see the following code snippet. Lets say your div id is "id" var x = document.getElementById("id");x.style.cursor = 'pointer';x.onclick = function() { // your code...}; I hope this will work for you.
  9. Pie Chart--Link

    Hi, I am using FusionCharts version v3.2.2. I came across a weird issue while using link option in Pie charts. With the help of that link I am calling a javascript function(like "link" : "j-onclick"). It works fine for the first two data elements of the Pie Chart but if I click on the other data elements, it is not calling the javascript function. I used the same json data for generating a column chart and everything works fine. Need clarification on this. Thanks in advance.
  10. Smart Labels In Gauges

    Hi, I am using FusionWidgets Version v3.2.2. I want to know if I could bring smart labels(as in pie charts) in the gauges(specifically angular gauge). The dial is showing the data on mouse hover. But my requirement is to show it as a label. Help me with this. Thanks in advance...
  11. Smart Labels In Gauges

    Please find the attached image in which i have modified the gauge image to show you my requirement. I want to enable such smart labels.
  12. Exporting Pie Chart

    Hi, I tried exporting fusion widgets. I am getting the exact pdf as I already got while exporting Pie chart(Please see the above threads). Please let me know if it is the same issue or if I am missing something. Thanks in advance.
  13. Reference Line In A Column Chart

    Hi, One of the needs of my application is that I should draw a reference line in the column chart. For instance I can say that reference line would indicate some value which is the expected one. I have attached a screenshot of one such. Please let me know if i can do it with the available configuration. FYI, I am using FusionCharts XT v3.2.2.
  14. Reference Line In A Column Chart

    I am sorry.. I was not more precise. I can do that by using trend lines. Can i make those lines draggable?
  15. Exporting Pie Chart

    Hi Sumedh, Just wanted to ask if the issue is resolved. We are in a kind of hurry.
  16. Getting Started

    Hi, I just started using Fusion Widgets (v3.1.1). As suggested in the manual, I have included ll the SWF files. But still I am not getting any widgets displayed. It just shows an empty screen. It dors not throw any errors either. Do I have to any other configurations? Looking for your directions...
  17. Getting Started

    Hi, I made some stupid mistake in including the js files in the script tag. Now i am able to see the chart but still the loadMask is there and it shows an error "p.dataReady is not a function".
  18. Getting Started

    I have done all those but still it is not showing anything. Neither it throws any error. Please see one of previous threads where i have added my js code. Anyways I will cross check it one more time.
  19. Getting Started

    Hi again, I have upgraded my fusion widgets to FusionWidgets_Enterprise XT v3.2.2, but still I am not seeing anything. I think I am not including some js files in the script tag. I have included FusionCharts.js only. Is it fine? If it is, please let me know where I can go wrong. Thanks.
  20. Hi, I am using Fusion charts v3.2.2. The data element of the fusioncharts can be made a hyperlink by adding "link" attribute into the data. It works flawlessly. My question is if there is any way by which i can enable right click on the data element of the chart. Thanks.
  21. Getting Started

    Thanks Sumedh. I will upgrade it.
  22. Right Click On The Data Element Of The Charts

    We are using licensed version only. I was just looking for some directions to start with.
  23. Getting Started

    Bullet chart is the one I am trying to configure. It is rendered using javascript only. I have included FusionCharts.js file which was in the folder Fusion Widgets Enterprise v3.1.1\JSClass. The code is : loadBulletChartFusionWidget : function (){ var that = this; FusionCharts.setCurrentRenderer('javascript'); var chart = new FusionCharts("FusionWidgets/Charts/HBullet.swf", that.getComponent(that .getWrapperId()).el.id + "_TEMP", that.chartW, that.chartH, "0", "1"); chart.setJSONData({ "chart" : { "lowerlimit" : "0", "upperlimit" : "100", "caption" : "Revenue", "subcaption" : "US $ (1,000s)", "numberprefix" : "$", "numbersuffix" : "K", "showvalue" : "1" }, "colorrange" : { "color" : [ { "minvalue" : "0", "maxvalue" : "50", "color" : "A6A6A6" }, { "minvalue" : "50", "maxvalue" : "75", "color" : "CCCCCC" }, { "minvalue" : "75", "maxvalue" : "100", "color" : "E1E1E1" } ] }, "value" : "78.9", "target" : "80" } ); chart.render(that.getComponent(that.getWrapperId()).el.id); } The HTML Node object(renderer Id), width and height are all defined in some other method.
  24. Hi, I am using Fusion Charts Version v3.2.2. I am exporting the chart as PDF using its SVG String. I just want to know if there is any way by which I can export the chart data as a grid or table, that appears below the chart . Please see the sample image, attached with this post. Thanks in advance.
  25. Exporting Chart With Its Data In A Grid Or Table

    Thanks Sumedh. This works. And yeah!!! Can we customize the grid? i.e. can we have the headers included with the grid? SSGrid shows only the data.