diff --git a/README.md b/README.md index 0d019ebb0288569b6440b8e567938b1bdcddbfbb..5c5a7e61215283b241232745192738ede33743a6 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,7 @@ Next, install Java from and uploa ## Screenshots +##### Timeline: + ![Timeline](/screenshots/timeline.png "Timeline Visualization") +##### System stats: + ![System](/screenshots/system.png "Aggregated System statistics since the device was last fully charged") -![History](/screenshots/history.png "Aggregated statistics during distinct discharge sessions") +##### App stats: ![App](/screenshots/app.png "Application specific statistics") diff --git a/js/color.js b/js/color.js index ccf2047c45a3f2d2310888ccb7ec6ff7a2f464fd..ca1d56aed92b402e8c0b0db854f013f40bf8b886 100644 --- a/js/color.js +++ b/js/color.js @@ -249,7 +249,9 @@ historian.color.valueTextMap_[historian.metrics.Csv.BRIGHTNESS] = { /** @private {!Object} */ historian.color.valueTextMap_[historian.metrics.Csv.CHARGING_STATUS] = { 'c': 'charging', - 'd': 'discharging' + 'd': 'discharging', + 'n': 'not charging', + 'f': 'full' }; diff --git a/js/historian_v2.js b/js/historian_v2.js index 92e62cfab7f4066651a5333df44d02314546df90..7d1db0fd3474a706407c50755ea3c2067446d188 100644 --- a/js/historian_v2.js +++ b/js/historian_v2.js @@ -170,6 +170,8 @@ historian.HistorianV2.prototype.zoomHandler_ = function() { historian.HistorianV2.prototype.handleMouse_ = function() { this.context_.svg .on('mousemove', function() { + this.seriesLevel_.showSummary(); + this.bars_.showSeriesInfo(); this.levelLine_.renderTimeInfo(); }.bind(this)) .on('mouseout', function() { diff --git a/screenshots/history.png b/screenshots/history.png deleted file mode 100644 index f273481040706c62c2bfe6324e287f88d1a74031..0000000000000000000000000000000000000000 Binary files a/screenshots/history.png and /dev/null differ diff --git a/screenshots/timeline.png b/screenshots/timeline.png index b0dd143de676373225231d1cff8f584b8db94695..ce8539e1ae5252572fe2847961e5f3928249676e 100644 Binary files a/screenshots/timeline.png and b/screenshots/timeline.png differ