abdfahim

Members
  • Content count

    9
  • Joined

  • Last visited

Everything posted by abdfahim

  1. Hi, Is there any problem if I list the color codes without hashtag, e.g. like below? I have tested in Chrome, and it was working properly. The reason is, if I want to use xmlURL method and like to send paletteColors optionally, I can't use a # in color list as HTTP just ignore anything after # in the URL (as default behavior). Ofcourse I can do some workaround in php, but just want to know whether there is any possible issue if I supply color codes without hash.
  2. No Loading text

    Hi, I am using javascript to render chart on my webpage. Initially the chart shows a text "No data to display". When I click a button, it loads data and show graph. My problem is, based on data volume, sometimes chart takes a while to load. But I don't see any message in between. It just keep showing "No data to display" and then suddenly show chart. I want to show "retrieving data ..." or "loading chart ..." type message between button clicked and show chart to let the user know that something is going on in the background. I did it before, but can't find the option in new documentation. Can you please help me? My code: var strURL = "xml/dynamic.php?id=xxxxxx"strURL = escape(strURL); var myChart = FusionCharts(chartid); myChart.setXMLUrl(strURL); Thanks,
  3. Hi, Is it possible to show the percentage inside each segment in stacked column 2D chart?
  4. Hi, I cannot find the way to invoke data URL method with 3.4.x (with php) in documentation. Can you please let me know whether the functionality is deprecated or not? If not, what is the difference in coding with old 3.3.x versions and where I can find it in documentation? Thanks,
  5. Hi, If I give particular number of palette colors like below, it just repeats through the set of color. Can we please have the option so that it follows the default list after my customized set is finished (e.g. first 2 lines will be as per my defined color, rests will follow default colors). paletteColors= '#0075c2,#1aaf5d'
  6. Use Data URL Method in Fusion chart 3.4.x

    Also, can you please tell me why I cannot give my own preffered id to a chart FusionCharts.ready(function () { var myChart = new FusionCharts({ "type": "column2d", "id": "myownid", "renderAt": "mydiv", "width": w, "height": h, "dataFormat": "xml", "dataSource": "<chart></chart>" }); myChart.render(); });
  7. Hi, How to use variables as params in core JS function for rendering chart? FusionCharts.ready(function () { var myChart = new FusionCharts({ "type": "zoomline", "renderAt": "mydivid", "width": "600", "height": "400", "dataFormat": "xml", "dataSource": "xml_code" }); myChart.render(); }); I want to use JS variable divid and strxml as "renderAt" and "dataSource" respectively. Some thing like below var myblocks = document.getElementsByName("alldivs"); var myxml = "XML OUTPUT FROM AJAX REQUEST"; FusionCharts.ready(function () { var myChart = new FusionCharts({ "type": "zoomline", "renderAt": myblocks[0].id, "width": "600", "height": "400", "dataFormat": "xml", "dataSource": myxml }); myChart.render(); });
  8. Showing data label with 100% Stacked Column

    got the answer .. showValues it is ... thanks
  9. same issue I faced with StackedColumn3D during pure javascript rendering. Attached is default chart from gallary (in the download package) with changing 1st column values to zero.