Skip to content

Commit

Permalink
better label for enrollment chart
Browse files Browse the repository at this point in the history
  • Loading branch information
idugan100 committed Aug 11, 2024
1 parent 11f7176 commit b85fa3b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/Charts/EnrollmentOverTime.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public function build($enrollment_by_semester_points): LarapexChart

return $this->chart->lineChart()
->addData('Course Seats', $enrollment_array)
->setTitle(' Enrollment Over Time')
->setTitle('Cumulative Course Enrollment Over Time')
->setXAxis($semester_array)
->setHeight(350)
->setColors([env('CHART_MAIN')]);
Expand Down
2 changes: 1 addition & 1 deletion app/Charts/GpaOverTime.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public function build($gpa_by_semester_points, ?string $department = 'All'): Lar
return $this->chart->lineChart()
->addData(($department).' Courses', $gpa_array)
->addData('All Courses', $this->university_average_gpa)
->setTitle(' Average GPA Over Time')
->setTitle('Average GPA Over Time')
->setXAxis($this->all_semesters)
->setHeight(350)
->setColors([env('CHART_MAIN'), env('CHART_ACCENT')]);
Expand Down

0 comments on commit b85fa3b

Please sign in to comment.