yangchuan009

Members
  • Content count

    21
  • Joined

  • Last visited

Posts posted by yangchuan009


  1. Hi,

     

    Please find the attached sample of the Real-Time Line chart (using Evaluation version of FusionCharts V3.3.0 files), which updates the data with vLine, onClick of an HTML button (placed just below the chart).

     

    Also, please find the attached scren shot of the same for your reference.

     

    Hope this helps!

     

     

    Hi,

     

    Please find the attached sample of the Real-Time Line chart (using Evaluation version of FusionCharts V3.3.0 files), which updates the data with vLine, onClick of an HTML button (placed just below the chart).

     

    Also, please find the attached scren shot of the same for your reference.

     

    Hope this helps!

    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. Hi,

     

    Thank you for your more specific information.

     

    The issue will be replicated in the FusionWidgets XT version 3.2.4-sr1.9888, which has fixed in the latest release.

     

    So, could you please upgrade to latest version and try once?

     

    Please note that the latest version currently available is FusionWidgets XT v3.3.1-release.19520.

     

    Hope this helps!

    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. Hi,

     

    Please find the attached sample of the Real-Time Line chart (using Evaluation version of FusionCharts V3.3.0 files), which updates the data with vLine, onClick of an HTML button (placed just below the chart).

     

    Also, please find the attached scren shot of the same for your reference.

     

    Hope this helps!

     

     

    Hi,

     

    Please find the attached sample of the Real-Time Line chart (using Evaluation version of FusionCharts V3.3.0 files), which updates the data with vLine, onClick of an HTML button (placed just below the chart).

     

    Also, please find the attached scren shot of the same for your reference.

     

    Hope this helps!

    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 ,


  6. Hi,

     

    Please find the attached sample of the Real-Time Line chart (using Evaluation version of FusionCharts V3.3.0 files), which updates the data with vLine, onClick of an HTML button (placed just below the chart).

     

    Also, please find the attached scren shot of the same for your reference.

     

    Hope this helps!

    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 ,


  7. Hi,

     

    Please find the attached sample of the Real-Time Line chart (using Evaluation version of FusionCharts V3.3.0 files), which updates the data with vLine, onClick of an HTML button (placed just below the chart).

     

    Also, please find the attached scren shot of the same for your reference.

     

    Hope this helps!

    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.....


  8. Hi,

     

    Could you please use conditional operator "==" instead of "=" in the below code snippet and try once again?

     

    Code Snippet:

    if(i == 10){
    strData = "&label=10&value=10&vline=1&vLineLabel=vLine&vLineColor=666666&vLineThickness=2&vLineDashed=1";
    }
    

    Hope this helps!

    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..


  9.  

    Hi,
     
    We tried using the vLine with RealTimeLine chart and the issue does not get replicated here.
     
    Please find the screenshot of the same.
     
    Could you please send us the sample of your code so that we can test it here?
     
    Awaiting your response. 

     

    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??


  10.  

     
    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

     

     

     

    Hi,
     
    We tried using the vLine with RealTimeLine chart and the issue does not get replicated here.
     
    Please find the screenshot of the same.
     
    Could you please send us the sample of your code so that we can test it here?
     
    Awaiting your response. 

    <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.  

    Hi,
     
    We tried using the vLine with RealTimeLine chart and the issue does not get replicated here.
     
    Please find the screenshot of the same.
     
    Could you please send us the sample of your code so that we can test it here?
     
    Awaiting your response. 

     

     
    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

  12. vLines not showing up (RealTimeLine) when feed real-time data . According to the widgets documentation,

    http://docs.fusioncharts.com/widgets/Contents/RealTime/RealTimeDataFormat.html,

    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 chart I have created.,


  13. I want to change the features of the dots in the realtime line chart based on certain conditions.So is it possible to provide the anchorSides,anchorRadius, anchorBgColor for the new incremental data along with the lable and value.If so how.I tried something like strData="&label=16:09:02&value=0.0&drawAnchors=1&anchorSides=3&anchorRadius=5&anchorBorderColor=ff0000& anchorBorderThickness=2&anchorAlpha=50&anchorBgAlpha=50&anchorBgColor=ff0000";chartRef.feedData(strData); ,.But didn't work.Please let me know if this is possible.


  14. I want to change the features of the dots in the realtime line chart based on certain conditions.So is it possible to provide the anchorSides,anchorRadius, anchorBgColor for the new incremental data along with the lable and value.If so how.I tried something like strData="&label=16:09:02&value=0.0&drawAnchors=1&anchorSides=3&anchorRadius=5&anchorBorderColor=ff0000& anchorBorderThickness=2&anchorAlpha=50&anchorBgAlpha=50&anchorBgColor=ff0000";chartRef.feedData(strData);,.But didn't work.Please let me know if this is possible.


  15. Hi,<br style="color: rgb(107, 107, 107); font-family: verdana, arial, tahoma, sans-serif; line-height: 18px; background-color: rgb(247, 247, 247);"><br style="color: rgb(107, 107, 107); font-family: verdana, arial, tahoma, sans-serif; line-height: 18px; background-color: rgb(247, 247, 247);">I want to change the features of the dots in the realtime line chart based on certain conditions.So is it possible to provide the anchorSides,anchorRadius, nchorBgColor for the new incremental data along with the lable and value.If so how.I tried something like strData="&label=16:09:02&value=0.0&drawAnchors=1&anchorSides=3&anchorRadius=5&anchorBorderColor=ff0000&anchorBorderThickness=2&anchorAlpha=50&anchorBgAlpha=50&anchorBgColor=ff0000";

    chartRef.feedData(strData);,.But didn't work.Please let me know if this is possible.<br style="color: rgb(107, 107, 107); font-family: verdana, arial, tahoma, sans-serif; line-height: 18px; background-color: rgb(247, 247, 247);"><br style="color: rgb(107, 107, 107); font-family: verdana, arial, tahoma, sans-serif; line-height: 18px; background-color: rgb(247, 247, 247);">Thnaks,<br style="color: rgb(107, 107, 107); font-family: verdana, arial, tahoma, sans-serif; line-height: 18px; background-color: rgb(247, 247, 247);">yangchuan009.