diff --git a/src/views/components/injected/CourseCatalogInjectedPopup/GradeDistribution.tsx b/src/views/components/injected/CourseCatalogInjectedPopup/GradeDistribution.tsx
index 6b9e65e8..1bb26766 100644
--- a/src/views/components/injected/CourseCatalogInjectedPopup/GradeDistribution.tsx
+++ b/src/views/components/injected/CourseCatalogInjectedPopup/GradeDistribution.tsx
@@ -98,13 +98,51 @@ export default function GradeDistribution({ course }: GradeDistributionProps): J
subtitle: { text: undefined },
legend: { enabled: false },
xAxis: {
- title: { text: 'Grades' },
+ labels: {
+ y: 20,
+ style: {
+ fontSize: '0.6875rem',
+ fontWeight: '500',
+ letterSpacing: '0',
+ lineHeight: 'normal',
+ fontStyle: 'normal',
+ },
+ },
+ title: {
+ text: 'Grades',
+ style: {
+ color: '#333F48',
+ fontSize: '0.80rem',
+ fontWeight: '400',
+ },
+ },
categories: ['A', 'A-', 'B+', 'B', 'B-', 'C+', 'C', 'C-', 'D+', 'D', 'D-', 'F'],
+ tickInterval: 1,
+ tickWidth: 1.5,
+ tickLength: 10,
+ tickColor: '#9CADB7',
crosshair: true,
+ lineColor: '#9CADB7',
},
yAxis: {
+ labels: {
+ style: {
+ fontSize: '0.80rem',
+ fontWeight: '400',
+ color: '#333F48',
+ lineHeight: '100%',
+ fontStyle: 'normal',
+ },
+ },
min: 0,
- title: { text: 'Students' },
+ title: {
+ text: 'Students',
+ style: {
+ color: '#333F48',
+ fontSize: '0.80rem',
+ fontWeight: '400',
+ },
+ },
},
chart: {
style: { fontFamily: 'Roboto Flex, Roboto Flex Local', fontWeight: '600' },
@@ -155,10 +193,12 @@ export default function GradeDistribution({ course }: GradeDistributionProps): J
{status === DataStatus.ERROR &&