HKA

Members
  • Content count

    7
  • Joined

  • Last visited

Everything posted by HKA

  1. Hi, Please refer to the attached example weekly-sales.html. When the chart is rendered in Flash mode, nothing happens when the links are clicked on a Google chrome browser.(and on Android browser) However, the same works fine when Javascript rendering mode is used instead. Can you please let me know what is the issue here? Flash mode is important to us since we need to support Android 2.2 & 2.3 platforms I am using version 3.2.3-sr3.5347 (Not attaching all files since they are licensed) Regards, Hari weekly-sales.html
  2. Hi Sanjukta, Thanks for the update. However, even after setting Flash player security options(using settings panel as well as using batch file), the links are not working on a windows machine. Regards, Hari
  3. Hi Sudipto, The links do work in the example http://docs.fusioncharts.com/charts/Code/MyFirstChart/linked-charts.html. In fact, the example html I uploaded is from another demo on your website. Also I can confirm the links work fine when the page is loaded from a local webserver, but not when accessed as a file (using datastring methods) Is it possible to make it work similarly when the page is loaded directly in the browser (or Android webview) ? Since JavaScript charts are not supported on Android 2.x platforms, we require the Flash drill-down functionality to make things work. Regards, Hari
  4. Hi Sumedh, Thank you for the update I can confirm that I have included the Chart SWF file into the project. Otherwise the parent chart itself would not have displayed since the same SWF file is being re-used Appreciate if you can share your project artifacts(swf, js etc) since the same is working for you. One important difference that I noticed i the screenshot is that you are loading the page from a local web server. Have you tried loading the page directly onto the browser? I shall also try with the latest release in the meantime. Regards, Hari
  5. Hi, Is it possible to obtain a handle/reference to a linked chart in drill down chart (rendered using javascript)? Is it possible to do below? var linkedChart = <handle for linked chart> linkedChart.setAttribute ("showLabels":"0"); linkedChart.setTransparent(true); Regards, Hari
  6. Getting Handle For Linked Chart

    Ok, Thanks for the update. Is there any method to dynamically update a linked chart's attributes? Regards, Hari
  7. Getting Handle For Linked Chart

    Hi, I am trying to get child chart id. In below JSON, how to get id of child chart opened by link "newchart-json-loans" { "chart" : { "caption" : "Liability Details", "subcaption" : "Liability details by account type", "xaxisname" : "Account Type", "yaxisname" : "Balance", "numberSuffix" : " USD", "showlegend" : "1" }, "data" : [{ "label" : "Loans", "value" : "30000", "link" : "newchart-json-loans" }, { "label" : "Credit cards", "value" : "10000", "link" : "newchart-json-creditcards" } ], "linkeddata" : [{ "id" : "loans", "linkedchart" : { "chart" : { "caption" : "Loan details", "subcaption" : "Loan details by account", "xaxisname" : "Account Number", "yaxisname" : "Balance" }, "data" : [{ "label" : "004", "value" : "10000" }, { "label" : "006", "value" : "20000" } ] } }, { "id" : "creditcards", "linkedchart" : { "chart" : { "caption" : "Credit card details", "subcaption" : "Credit card details by account", "xaxisname" : "Account Number", "yaxisname" : "Balance" }, "data" : [{ "label" : "005", "value" : "2000" }, { "label" : "007", "value" : "8000" } ] } } ] } Thanks, Hari