YUI Library JavaScript DHTML



    
Chart with DataSource Polling

/*margin and padding on body element
  can introduce errors in determining
  element position and are not recommended;
  we turn them off as a foundation for YUI
  CSS treatments. */
body {
  margin:0;
  padding:0;
}










  #chart
  {
    width: 500px;
    height: 350px;
  }
  
  .chart_title
  {
    display: block;
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 0.4em;
  }




Chart with DataSource Polling



  

The YUI Charts Control provides built-in support for iterative polling for data over XHR using an XHR DataSource instance.  In the example below, iterative polling causes the chart to refresh every several seconds and animate its display to represent the new data.


Please note: The YUI Charts Control requires Flash Player 9.0.45 or higher. The latest version of Flash Player is available at the Adobe Flash Player Download Center.

      



Unable to load Flash content. The YUI Charts Control requires Flash Player 9.0.45 or higher. You can download the latest version of Flash Player from the Adobe Flash Player Download Center.



  YAHOO.widget.Chart.SWFURL = "yui_2.7.0b-lib/charts/assets/charts.swf";
//--- data
  var jsonData = new YAHOO.util.DataSource( "yui_2.7.0b-assets/charts-assets/generatedata.php?" );
  //use POST so that IE doesn't cache the data
  jsonData.connMethodPost = true;
  jsonData.responseType = YAHOO.util.DataSource.TYPE_JSON;
  jsonData.responseSchema =
  {
      resultsList: "Results",
      fields: ["Name","Value"]
  };
//--- chart
  var yAxis = new YAHOO.widget.NumericAxis();
  yAxis.minimum = 0;
  yAxis.maximum = 100;
  var mychart = new YAHOO.widget.ColumnChart( "chart", jsonData,
  {
    xField: "Name",
    yField: "Value",
    yAxis: yAxis,
    polling: 2000,
    //only needed for flash player express install
    expressInstall: "yui_2.7.0b-assets/charts-assets/expressinstall.swf"
  });



   
  
yui_2.7.0b.zip( 4,431 k)