Commit e98a07ca by Vik Paruchuri

Remove explicit tick labeling

parent 7375e694
...@@ -138,7 +138,7 @@ def course_grades_view_base(fs, db, course, type,params): ...@@ -138,7 +138,7 @@ def course_grades_view_base(fs, db, course, type,params):
charts = [] charts = []
for header in headers: for header in headers:
fixed_name = re.sub(" ","_",header).lower() fixed_name = re.sub(" ","_",header).lower()
header_data = [round(float(j[header])*2,1)/2 for j in results] header_data = [round(float(j[header])*10,1)/10 for j in results]
counter = Counter(header_data) counter = Counter(header_data)
counter_keys = counter.keys() counter_keys = counter.keys()
counter_keys.sort() counter_keys.sort()
......
...@@ -28,7 +28,6 @@ function render{{graph_name}}() ...@@ -28,7 +28,6 @@ function render{{graph_name}}()
}, },
xaxis: { xaxis: {
axisLabel: "{{x_label}}", axisLabel: "{{x_label}}",
ticks: ticks,
min: {{x_min}}, min: {{x_min}},
max: {{x_max}} max: {{x_max}}
}, },
......
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