diff options
Diffstat (limited to 'python/gras/query/chart_overall_throughput.js')
-rw-r--r-- | python/gras/query/chart_overall_throughput.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/gras/query/chart_overall_throughput.js b/python/gras/query/chart_overall_throughput.js index 61361dc..7b99fa4 100644 --- a/python/gras/query/chart_overall_throughput.js +++ b/python/gras/query/chart_overall_throughput.js @@ -15,6 +15,7 @@ function GrasChartOverallThroughput(args) this.title = "Overall Throughput vs Time in MIps"; this.history = new Array(); + this.default_width = 2*GRAS_CHARTS_STD_WIDTH; } GrasChartOverallThroughput.prototype.update = function(point) @@ -38,7 +39,6 @@ GrasChartOverallThroughput.prototype.update = function(point) var chart_data = google.visualization.arrayToDataTable(data_set); var options = { - width:GRAS_CHARTS_STD_WIDTH*2, legend: {'position': 'bottom'}, }; this.chart.draw(chart_data, options); |