[O] Add back the term lines and mark areas

This commit is contained in:
Hykilpikonna
2019-11-09 17:35:22 -05:00
parent eaf4d2ce7b
commit 793d7444b2
@@ -70,6 +70,14 @@ export default class OverallLine extends Vue
// Each course
let series: any[] = this.filteredCourses.map(course => this.getCourseSeries(course));
// Push other stuff
series.push(
{
type: 'line',
markLine: GraphUtils.getTermLines(),
markArea: GraphUtils.getGradeMarkAreas(0.4)
});
return series
}