Input: <html> <head> <script type = "text/javascript" src = "https://www.gstatic.com/charts/loader.js" ></script> <script type = "text/javascript" > google . charts . load ( "current" , { packages :[ "corechart" ]}); google . charts . setOnLoadCallback ( drawChart ); function drawChart () { var data = google . visualization . arrayToDataTable ([ [ 'Task' , 'Hours per Day' ], [ 'Work' , 11 ], [ 'Eat' , 2 ], [ 'Commute' , 2 ], [ 'Watch TV' , 2 ], [ 'Sleep' , 7 ] ]); var options = { title : 'My Daily Activities' , is3D : true , }; var chart = new google . visualization . PieChart ( document . getElementById ( 'piec
Comments
Post a Comment