diff options
Diffstat (limited to 'python/gras/query/chart_overhead_compare.js')
-rw-r--r-- | python/gras/query/chart_overhead_compare.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/python/gras/query/chart_overhead_compare.js b/python/gras/query/chart_overhead_compare.js index 9ad324c..0ec9070 100644 --- a/python/gras/query/chart_overhead_compare.js +++ b/python/gras/query/chart_overhead_compare.js @@ -1,4 +1,4 @@ -function GrasChartOverheadCompare(args) +function GrasChartOverheadCompare(args, panel) { //save enables this.ids = args.block_ids; @@ -11,7 +11,7 @@ function GrasChartOverheadCompare(args) ); //make new chart - this.chart = new google.visualization.PieChart(args.panel); + this.chart = new google.visualization.PieChart(panel); this.title = "Overhead Comparison"; this.default_width = GRAS_CHARTS_STD_WIDTH; |