Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3)

Unified Diff: tools/deep_memory_profiler/graph.py

Issue 299443007: dmprof: Bug fix: The label 'Timestamp' should be on the horizontal axis (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/deep_memory_profiler/graph.py
diff --git a/tools/deep_memory_profiler/graph.py b/tools/deep_memory_profiler/graph.py
index 543aaf90b4afe0d2acaa82844a9e92b1c0bafa83..66b329e99e1bb483b2becfdca5f391dccf4fc240 100755
--- a/tools/deep_memory_profiler/graph.py
+++ b/tools/deep_memory_profiler/graph.py
@@ -26,7 +26,7 @@ function turnOn(policy) {
var data = google.visualization.arrayToDataTable(all_data[policy]);
var charOptions = {
title: 'DMP Graph (Policy: ' + policy + ')',
- vAxis: {title: 'Timestamp', titleTextStyle: {color: 'red'}},
+ hAxis: {title: 'Timestamp', titleTextStyle: {color: 'red'}},
isStacked : true
};
var chart = new google.visualization.AreaChart(
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698