rock.huang

Members
  • Content count

    4
  • Joined

  • Last visited

About rock.huang

  • Rank
    Forum Newbie
  1. Hi, i found it is not available to drag/move the zoomline chart up/down on mobile phone (directly touch on the chart) is there any way to solve this problem? thanks.
  2. Can't reload the charter after hiding it with javascript

    Thanks for your reply, have solve the problem. Just change the execution sequence. render the charter first and set the xmlurl later. Before: this.myChart.setXMLUrl(flashVars.data_file); this.myChart.render(this.config.chartCont); Now: this.myChart.render(this.config.chartCont); this.myChart.setXMLUrl(flashVars.data_file); Tested on IE,OPEAR,CHROME,FIREFOX
  3. Can't reload the charter after hiding it with javascript

    The charters are in <div id="chart_box" ></div> and i use a hide/show button to control it. the code as follows: $(document).ready(function(){ $("#show-chart-btn").click(function(){ if($(this).text()=='Hide') { $(this).text('Show'); $("#chart_box").hide(); } else { $(this).text('Hide'); $("#chart_box").show(); } }); }); After i hide the #chart_box and try to show it again. The flash charter show "invalid data." and the data lost. seem only in Firfox, IE is ok.
  4. After hiding the charter with javascript, i can't reload the charter when i try to show it. How to solve this problem?