From ce0fd63a1a92574b029a50a63eadf58eb8364cab Mon Sep 17 00:00:00 2001 From: Devanshu Kumar Date: Sun, 21 Jan 2018 02:58:26 -0800 Subject: [PATCH] ModifiedGraphData --- dashboard.html | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/dashboard.html b/dashboard.html index 684ee31..bbaf77a 100644 --- a/dashboard.html +++ b/dashboard.html @@ -41,18 +41,18 @@ function drawVisualization() { // Some raw data (not necessarily accurate) var data = google.visualization.arrayToDataTable([ - ['Month', 'Bolivia', 'Ecuador', 'Madagascar', 'Papua New Guinea', 'Rwanda', 'Average'], - ['2004/05', 165, 938, 522, 998, 450, 614.6], - ['2005/06', 135, 1120, 599, 1268, 288, 682], - ['2006/07', 157, 1167, 587, 807, 397, 623], - ['2007/08', 139, 1110, 615, 968, 215, 609.4], - ['2008/09', 136, 691, 629, 1026, 366, 569.6] + ['Day', 'Steps', 'Calories', 'Sleep', 'Activity', 'Average'], + ['01/05', 10, 94, 90, 84, 70], + ['01/06', 70, 90, 91, 84, 84], + ['01/07', 96, 98, 70, 93, 90], + ['01/08', 83, 90, 90, 75, 85], + ['01/09', 80, 90, 93, 95, 90] ]); var options = { - title : 'Monthly Coffee Production by Country', - vAxis: {title: 'Cups'}, - hAxis: {title: 'Month'}, + title : 'Daily Fitness Goals', + vAxis: {title: 'Percent'}, + hAxis: {title: 'Days'}, seriesType: 'bars', series: {5: {type: 'line'}} }; @@ -79,7 +79,7 @@
- +