yangchuan009

Members
  • Content count

    21
  • Joined

  • Last visited

About yangchuan009

  • Rank
    Junior Member
  1. Hello, do you have the "FusionCharts.HC.Charts.js" , and the version is 3.3.0-release.18739, I want to test the demo as shown in your website. Thank you !!! My email is [email protected]
  2. Hello, do you have the "FusionCharts.HC.Charts.js" , and the version is 3.3.0-release.18739, I want to test the demo as shown in your website. Thank you !!!
  3. Hello everyone, I have a problem about realtimeline, I call the new FusionCharts( "RealTimeLine", "chartid", "100%", "25%" ) function to new a realtimeline chart, but when feed data to the chart, the realtimeline chart does not appears . However, if I call the new FusionCharts( "RealTimeLine", "chartid", "1024", "200" ) function to new a realtimeline chart, when feed data to the chart, the realtimeline chart appears immediately。。 So I want to ask you about the width and height of the fusioncharts, Can we set the relative width and height to the realtimeline???.....thanks!!!
  4. Hello everyone, I have a problem about realtimeline, I call the feedData() function to render the realtimeline, when the interval of feeding each data is too short,the web-side has no response, and the browser collapsed , so I want to ask what is the minimum interval to call the feedData() function.....thanks!!!
  5. Hello everyone, I have a problem about realtimeline, I call the feedData() function to render the realtimeline, when the interval of feeding each data is too short,the web-side has no response, and the browser collapsed , so I want to ask what is the minimum interval to call the feedData() function.....thanks!!!
  6. Thank you very much, this demo is usefully, However my version of FusionCharts is 3.2.4-sr1.9888, it does not works, the vLine don't appear.........So, had you tried with 3.2.4-sr1.9888 ??? i suspect the 3.2.4-sr1.9888 have some bugs..... my version is 3.2.4-sr1.9888, not 3.3.4 ,
  7. Thank you very much, this demo is usefully, However my version of FusionCharts is V3.3.4, it does not works, the vLine don't appear.........So, had you tried with 3.2.4-sr1.9888 ??? i suspect the 3.2.4-sr1.9888 have some bugs..... my version is 3.2.4-sr1.9888, not 3.3.4 ,
  8. Thank you very much, this demo is usefully, However my version of FusionCharts is V3.3.4, it does not works, the vLine don't appear.........So, had you tried with V3.3.4??? i suspect the V3.3.4 have some bugs.....
  9. oh,it's not that problem, I tried in your way, but it does not works, so i suspect whether the fusionWidgets have some bugs, Can you send me a demo that you have tried successfully??? my email address is [email protected] ,,,Thanks..
  10. dataset> <set label='Oct 2005' value = '10'/> <set label='Nov 2005' value = '10' /> <set label='Dec 2005' value = '10'/> <vLine color='FF5904' thickness='2' /> <set label='Jan 2006' value = '10'/> <set label='Feb 2006' value = '10'/> </dataset> Did you feeddata in this way??
  11. <dataset> <set label='Oct 2005' value = '10'/> <set label='Nov 2005' value = '10' /> <set label='Dec 2005' value = '10'/> <vLine color='FF5904' thickness='2' /> <set label='Jan 2006' value = '10'/> <set label='Feb 2006' value = '10'/> </dataset> Did you feeddata in this way??
  12. function feedChartData(){ var myChart = FusionCharts('chartid'); var strData; for(var i = 0;i<20;i++){ if(i = 10){ strData = "&label=10&value=10&vline=1&vLineLabel=vLine&vLineColor=666666&vLineThickness=2&vLineDashed=1"; } else{ strData = "&label=" + i + "&value=10"; } myChart.feedData(strData); } } vLines not showing up (RealTimeLine) when feed data
  13. vLines not showing up (RealTimeLine.swf) when feed real-time data . According to the widgets documentation, the following realtime data should create a vLine: &label=11:45&value=753|345&vline=1&vLineLabel=vLine&vLineColor=666666&vLineThickness=2&vLineDashed=1, when feeddata, However it does not do so on the RealTimeLine.swf chart I have created.,