All pastes #2063906 Raw Edit

Unnamed

public text v1 · immutable
#2063906 ·published 2011-05-18 20:52 UTC
rendered paste body
<script type="text/javascript">google.load('visualization', '1', {packages:['imagechart']});
google.setOnLoadCallback(budgetbar_drawChart);
var budgetbar;
 
function budgetbar_drawChart() {
  budgetbar = new google.visualization.DataTable();
  budgetbar.addColumn('string', 'Label');
  budgetbar.addColumn('number', 'Funding gap');
  budgetbar.addColumn('number', 'Approved');
  budgetbar.addColumn('number', 'Programmed');
  budgetbar.addColumn('number', 'Expenditures');
  budgetbar_getCells();
  var budgetbar_chart = new google.visualization.ColumnChart(document.getElementById('budgetbar_div'));
  budgetbar_chart.draw(
    budgetbar, {
      legendFontSize:12,
      width: 400,
      height: 275,
      backgroundColor: '#FFFFFF',
      legend: 'none',
      tooltipFontSize:'14',
      colors:['grey','yellow','green','red']});
}
 
function budgetbar_getCells() {
budgetbar.addRows(1);
budgetbar.setCell(0, 0, 'Totals');
budgetbar.setCell(0, 1, 1219551.0);
budgetbar.setCell(0, 2, 2250000);
budgetbar.setCell(0, 3, 1030449.0);
budgetbar.setCell(0, 4, 65120.0);
}</script>