diff options
Diffstat (limited to 'python/gras/query/chart_handler_breakdown.js')
-rw-r--r-- | python/gras/query/chart_handler_breakdown.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/gras/query/chart_handler_breakdown.js b/python/gras/query/chart_handler_breakdown.js index 8e90fc3..f897c5b 100644 --- a/python/gras/query/chart_handler_breakdown.js +++ b/python/gras/query/chart_handler_breakdown.js @@ -14,6 +14,7 @@ function GrasChartHandlerBreakdown(args) this.chart = new google.visualization.PieChart(args.panel); this.title = "Handler Breakdown - " + this.block_id; + this.default_width = GRAS_CHARTS_STD_WIDTH; } GrasChartHandlerBreakdown.prototype.update = function(point) @@ -29,7 +30,6 @@ GrasChartHandlerBreakdown.prototype.update = function(point) ]); var options = { - width:GRAS_CHARTS_STD_WIDTH, chartArea:{left:5,top:0,right:5,bottom:0,width:"100%",height:"100%"}, }; |