goodoldshoes

Members
  • Content count

    5
  • Joined

  • Last visited

Everything posted by goodoldshoes

  1. When I click a country in map, it shows different color, how can I disable this and re-enable it?
  2. How Can I Disable Item Click In Map

    Thank you so much, that's what I want
  3. How Can I Disable Item Click In Map

    Yes, and when I deploy my code in iPad, hover-color effect is triggered when I touch a country
  4. I use FusionCharts and Sencha Touch 2 in my program, drilldown works fine in PC, but it does not work in iPad 1. If I use FusionCharts only, it works fine (//Ext.setup({}) 2. If I use FusionCharts and Sencha Touch 2, it does not work (Ext.setup({}) <script> //Ext.setup({}); var cc = "<chart caption='Assets' xAxisName='Month' yAxisName='Sum' numberPrefix='$' animation='0'>"; cc = cc + "<set label='January' value='14400' color='001EEE' link='JavaScript:alert(1);'/>"; cc = cc + "<set label='February' value='19600' color='001EEE'/>"; cc = cc + "<set label='March' value='24000' color='001EEE'/>"; cc = cc + "<set label='April' value='15700' color='001EEE'/>"; cc = cc + "<set label='May' value='18700' color='001EEE'/>"; cc = cc + "</chart>"; FusionCharts.setCurrentRenderer('javascript'); var myChart = new FusionCharts( "FusionCharts/Column3D.swf", "myChartId", "80%", "80%", "0", "1" ); myChart.setDataXML(cc); myChart.render("chartContainer"); </script>
  5. I meet the same problem, and I find that it works in iPad(iOS 4.3), but not work in iPad(iOS 5.01 or later) How can I make chart cilckable?