Commit c730b39f by Vik Paruchuri

Wider charts

parent e46f227a
......@@ -138,7 +138,7 @@ def course_grades_view_base(fs, db, course, type,params):
charts = []
for header in headers:
fixed_name = re.sub(" ","_",header).lower()
header_data = [round(float(j[header]),2) for j in results]
header_data = [round(float(j[header])*4,1)/4 for j in results]
counter = Counter(header_data)
counter_keys = counter.keys()
counter_keys.sort()
......
......@@ -5,7 +5,7 @@
</div>
<div class="chart">
<div id="{{graph_name}}" style="width:600px;height:300px"></div>
<div id="{{graph_name}}" style="width:700px;height:400px"></div>
</div>
</div>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment