Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-platform
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
edx-platform
Commits
6f62408e
Commit
6f62408e
authored
Sep 23, 2012
by
kimth
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add comments
parent
b376bc09
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
lms/templates/courseware/progress_graph.js
+2
-2
No files found.
lms/templates/courseware/progress_graph.js
View file @
6f62408e
...
...
@@ -114,12 +114,12 @@ $(function () {
series
.
push
(
{
label
:
'Dropped Scores'
,
data
:
droppedScores
,
points
:
{
symbol
:
"cross"
,
show
:
true
,
radius
:
3
},
bars
:
{
show
:
false
},
color
:
"#333"
}
);
// Allow for arbitrary grade markers e.g. ['A', 'B', 'C'], ['Pass'], etc.
var
ascending_grades
=
grade_cutoff_ticks
.
map
(
function
(
el
)
{
return
el
[
0
];
});
var
ascending_grades
=
grade_cutoff_ticks
.
map
(
function
(
el
)
{
return
el
[
0
];
});
// Percentage point (in decimal) of each grade cutoff
ascending_grades
.
sort
();
var
colors
=
[
'#f3f3f3'
,
'#e9e9e9'
,
'#ddd'
];
var
markings
=
[];
for
(
var
i
=
1
;
i
<
ascending_grades
.
length
-
1
;
i
++
)
for
(
var
i
=
1
;
i
<
ascending_grades
.
length
-
1
;
i
++
)
// Skip the i=0 marking, which starts from 0%
markings
.
push
({
yaxis
:
{
from
:
ascending_grades
[
i
],
to
:
ascending_grades
[
i
+
1
]},
color
:
colors
[(
i
-
1
)
%
colors
.
length
]});
var
options
=
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment