2026-02-02 20:34:35 +00:00
|
|
|
/**
|
|
|
|
|
* PerformanceChart Component
|
|
|
|
|
* Displays school performance data over time using Chart.js
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
'use client';
|
|
|
|
|
|
|
|
|
|
import { Line } from 'react-chartjs-2';
|
|
|
|
|
import {
|
|
|
|
|
Chart as ChartJS,
|
|
|
|
|
CategoryScale,
|
|
|
|
|
LinearScale,
|
|
|
|
|
PointElement,
|
|
|
|
|
LineElement,
|
|
|
|
|
Title,
|
|
|
|
|
Tooltip,
|
|
|
|
|
Legend,
|
|
|
|
|
ChartOptions,
|
|
|
|
|
} from 'chart.js';
|
|
|
|
|
import type { SchoolResult } from '@/lib/types';
|
|
|
|
|
import styles from './PerformanceChart.module.css';
|
|
|
|
|
|
|
|
|
|
// Register Chart.js components
|
|
|
|
|
ChartJS.register(
|
|
|
|
|
CategoryScale,
|
|
|
|
|
LinearScale,
|
|
|
|
|
PointElement,
|
|
|
|
|
LineElement,
|
|
|
|
|
Title,
|
|
|
|
|
Tooltip,
|
|
|
|
|
Legend
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
interface PerformanceChartProps {
|
|
|
|
|
data: SchoolResult[];
|
|
|
|
|
schoolName: string;
|
feat: add secondary school support with KS4 data and metric tooltips
- Backend: replace INNER JOIN ks2 with UNION ALL (ks2 + ks4) so primary
and secondary schools both appear in the main DataFrame
- Backend: add /api/national-averages endpoint computing means from live
data, replacing the hardcoded NATIONAL_AVG constant on the frontend
- Backend: add phase filter param to /api/schools; return phases from
/api/filters; fix hardcoded "phase": "Primary" in school detail endpoint
- Backend: add KS4 metric definitions (Attainment 8, Progress 8, EBacc,
English & Maths pass rates) to METRIC_DEFINITIONS and RANKING_COLUMNS
- Frontend: SchoolDetailView is now phase-aware — secondary schools show
a GCSE Results section (Att8, P8, E&M, EBacc) instead of SATs; phonics
tab hidden for secondary; admissions says Year 7 instead of Year 3;
history table shows KS4 columns; chart datasets switch for secondary
- Frontend: new MetricTooltip component (CSS-only ⓘ icon) backed by
METRIC_EXPLANATIONS — added to RWM, GPS, SEN, EAL, IDACI, progress
scores and all KS4 metrics throughout SchoolDetailView and SchoolCard
- Frontend: METRIC_EXPLANATIONS extended with KS4 terms (Attainment 8,
Progress 8, EBacc) and previously missing terms (SEN, EHCP, EAL, IDACI)
- Frontend: SchoolCard expands "RWM" to "Reading, Writing & Maths" and
shows Attainment 8 / English & Maths Grade 4+ for secondary schools
- Frontend: FilterBar adds Phase dropdown (Primary / Secondary / All-through)
- Frontend: HomeView hero copy updated; compact list shows phase-aware metric
- Global metadata updated to remove "primary only" framing
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-28 14:59:40 +00:00
|
|
|
isSecondary?: boolean;
|
2026-02-02 20:34:35 +00:00
|
|
|
}
|
|
|
|
|
|
feat: add secondary school support with KS4 data and metric tooltips
- Backend: replace INNER JOIN ks2 with UNION ALL (ks2 + ks4) so primary
and secondary schools both appear in the main DataFrame
- Backend: add /api/national-averages endpoint computing means from live
data, replacing the hardcoded NATIONAL_AVG constant on the frontend
- Backend: add phase filter param to /api/schools; return phases from
/api/filters; fix hardcoded "phase": "Primary" in school detail endpoint
- Backend: add KS4 metric definitions (Attainment 8, Progress 8, EBacc,
English & Maths pass rates) to METRIC_DEFINITIONS and RANKING_COLUMNS
- Frontend: SchoolDetailView is now phase-aware — secondary schools show
a GCSE Results section (Att8, P8, E&M, EBacc) instead of SATs; phonics
tab hidden for secondary; admissions says Year 7 instead of Year 3;
history table shows KS4 columns; chart datasets switch for secondary
- Frontend: new MetricTooltip component (CSS-only ⓘ icon) backed by
METRIC_EXPLANATIONS — added to RWM, GPS, SEN, EAL, IDACI, progress
scores and all KS4 metrics throughout SchoolDetailView and SchoolCard
- Frontend: METRIC_EXPLANATIONS extended with KS4 terms (Attainment 8,
Progress 8, EBacc) and previously missing terms (SEN, EHCP, EAL, IDACI)
- Frontend: SchoolCard expands "RWM" to "Reading, Writing & Maths" and
shows Attainment 8 / English & Maths Grade 4+ for secondary schools
- Frontend: FilterBar adds Phase dropdown (Primary / Secondary / All-through)
- Frontend: HomeView hero copy updated; compact list shows phase-aware metric
- Global metadata updated to remove "primary only" framing
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-28 14:59:40 +00:00
|
|
|
export function PerformanceChart({ data, schoolName, isSecondary = false }: PerformanceChartProps) {
|
2026-02-02 20:34:35 +00:00
|
|
|
// Sort data by year
|
|
|
|
|
const sortedData = [...data].sort((a, b) => a.year - b.year);
|
2026-03-29 20:17:04 +01:00
|
|
|
const formatYear = (y: number) => {
|
|
|
|
|
const s = y.toString();
|
|
|
|
|
return s.length === 6 ? `${s.slice(0, 4)}/${s.slice(4)}` : s;
|
|
|
|
|
};
|
|
|
|
|
const years = sortedData.map(d => formatYear(d.year));
|
2026-02-02 20:34:35 +00:00
|
|
|
|
feat: add secondary school support with KS4 data and metric tooltips
- Backend: replace INNER JOIN ks2 with UNION ALL (ks2 + ks4) so primary
and secondary schools both appear in the main DataFrame
- Backend: add /api/national-averages endpoint computing means from live
data, replacing the hardcoded NATIONAL_AVG constant on the frontend
- Backend: add phase filter param to /api/schools; return phases from
/api/filters; fix hardcoded "phase": "Primary" in school detail endpoint
- Backend: add KS4 metric definitions (Attainment 8, Progress 8, EBacc,
English & Maths pass rates) to METRIC_DEFINITIONS and RANKING_COLUMNS
- Frontend: SchoolDetailView is now phase-aware — secondary schools show
a GCSE Results section (Att8, P8, E&M, EBacc) instead of SATs; phonics
tab hidden for secondary; admissions says Year 7 instead of Year 3;
history table shows KS4 columns; chart datasets switch for secondary
- Frontend: new MetricTooltip component (CSS-only ⓘ icon) backed by
METRIC_EXPLANATIONS — added to RWM, GPS, SEN, EAL, IDACI, progress
scores and all KS4 metrics throughout SchoolDetailView and SchoolCard
- Frontend: METRIC_EXPLANATIONS extended with KS4 terms (Attainment 8,
Progress 8, EBacc) and previously missing terms (SEN, EHCP, EAL, IDACI)
- Frontend: SchoolCard expands "RWM" to "Reading, Writing & Maths" and
shows Attainment 8 / English & Maths Grade 4+ for secondary schools
- Frontend: FilterBar adds Phase dropdown (Primary / Secondary / All-through)
- Frontend: HomeView hero copy updated; compact list shows phase-aware metric
- Global metadata updated to remove "primary only" framing
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-28 14:59:40 +00:00
|
|
|
// Prepare datasets — phase-aware
|
|
|
|
|
const datasets = isSecondary ? [
|
2026-02-02 20:34:35 +00:00
|
|
|
{
|
feat: add secondary school support with KS4 data and metric tooltips
- Backend: replace INNER JOIN ks2 with UNION ALL (ks2 + ks4) so primary
and secondary schools both appear in the main DataFrame
- Backend: add /api/national-averages endpoint computing means from live
data, replacing the hardcoded NATIONAL_AVG constant on the frontend
- Backend: add phase filter param to /api/schools; return phases from
/api/filters; fix hardcoded "phase": "Primary" in school detail endpoint
- Backend: add KS4 metric definitions (Attainment 8, Progress 8, EBacc,
English & Maths pass rates) to METRIC_DEFINITIONS and RANKING_COLUMNS
- Frontend: SchoolDetailView is now phase-aware — secondary schools show
a GCSE Results section (Att8, P8, E&M, EBacc) instead of SATs; phonics
tab hidden for secondary; admissions says Year 7 instead of Year 3;
history table shows KS4 columns; chart datasets switch for secondary
- Frontend: new MetricTooltip component (CSS-only ⓘ icon) backed by
METRIC_EXPLANATIONS — added to RWM, GPS, SEN, EAL, IDACI, progress
scores and all KS4 metrics throughout SchoolDetailView and SchoolCard
- Frontend: METRIC_EXPLANATIONS extended with KS4 terms (Attainment 8,
Progress 8, EBacc) and previously missing terms (SEN, EHCP, EAL, IDACI)
- Frontend: SchoolCard expands "RWM" to "Reading, Writing & Maths" and
shows Attainment 8 / English & Maths Grade 4+ for secondary schools
- Frontend: FilterBar adds Phase dropdown (Primary / Secondary / All-through)
- Frontend: HomeView hero copy updated; compact list shows phase-aware metric
- Global metadata updated to remove "primary only" framing
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-28 14:59:40 +00:00
|
|
|
label: 'Attainment 8',
|
|
|
|
|
data: sortedData.map(d => d.attainment_8_score),
|
|
|
|
|
borderColor: 'rgb(59, 130, 246)',
|
|
|
|
|
backgroundColor: 'rgba(59, 130, 246, 0.1)',
|
|
|
|
|
tension: 0.3,
|
|
|
|
|
yAxisID: 'y',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: 'English & Maths Grade 4+',
|
|
|
|
|
data: sortedData.map(d => d.english_maths_standard_pass_pct),
|
|
|
|
|
borderColor: 'rgb(16, 185, 129)',
|
|
|
|
|
backgroundColor: 'rgba(16, 185, 129, 0.1)',
|
|
|
|
|
tension: 0.3,
|
|
|
|
|
yAxisID: 'y',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: 'Progress 8',
|
|
|
|
|
data: sortedData.map(d => d.progress_8_score),
|
|
|
|
|
borderColor: 'rgb(245, 158, 11)',
|
|
|
|
|
backgroundColor: 'rgba(245, 158, 11, 0.1)',
|
|
|
|
|
tension: 0.3,
|
|
|
|
|
yAxisID: 'y1',
|
|
|
|
|
},
|
|
|
|
|
] : [
|
|
|
|
|
{
|
|
|
|
|
label: 'Reading, Writing & Maths Expected %',
|
2026-02-02 20:34:35 +00:00
|
|
|
data: sortedData.map(d => d.rwm_expected_pct),
|
|
|
|
|
borderColor: 'rgb(59, 130, 246)',
|
|
|
|
|
backgroundColor: 'rgba(59, 130, 246, 0.1)',
|
|
|
|
|
tension: 0.3,
|
|
|
|
|
},
|
|
|
|
|
{
|
feat: add secondary school support with KS4 data and metric tooltips
- Backend: replace INNER JOIN ks2 with UNION ALL (ks2 + ks4) so primary
and secondary schools both appear in the main DataFrame
- Backend: add /api/national-averages endpoint computing means from live
data, replacing the hardcoded NATIONAL_AVG constant on the frontend
- Backend: add phase filter param to /api/schools; return phases from
/api/filters; fix hardcoded "phase": "Primary" in school detail endpoint
- Backend: add KS4 metric definitions (Attainment 8, Progress 8, EBacc,
English & Maths pass rates) to METRIC_DEFINITIONS and RANKING_COLUMNS
- Frontend: SchoolDetailView is now phase-aware — secondary schools show
a GCSE Results section (Att8, P8, E&M, EBacc) instead of SATs; phonics
tab hidden for secondary; admissions says Year 7 instead of Year 3;
history table shows KS4 columns; chart datasets switch for secondary
- Frontend: new MetricTooltip component (CSS-only ⓘ icon) backed by
METRIC_EXPLANATIONS — added to RWM, GPS, SEN, EAL, IDACI, progress
scores and all KS4 metrics throughout SchoolDetailView and SchoolCard
- Frontend: METRIC_EXPLANATIONS extended with KS4 terms (Attainment 8,
Progress 8, EBacc) and previously missing terms (SEN, EHCP, EAL, IDACI)
- Frontend: SchoolCard expands "RWM" to "Reading, Writing & Maths" and
shows Attainment 8 / English & Maths Grade 4+ for secondary schools
- Frontend: FilterBar adds Phase dropdown (Primary / Secondary / All-through)
- Frontend: HomeView hero copy updated; compact list shows phase-aware metric
- Global metadata updated to remove "primary only" framing
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-28 14:59:40 +00:00
|
|
|
label: 'Reading, Writing & Maths Higher %',
|
2026-02-02 20:34:35 +00:00
|
|
|
data: sortedData.map(d => d.rwm_high_pct),
|
|
|
|
|
borderColor: 'rgb(16, 185, 129)',
|
|
|
|
|
backgroundColor: 'rgba(16, 185, 129, 0.1)',
|
|
|
|
|
tension: 0.3,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: 'Reading Progress',
|
|
|
|
|
data: sortedData.map(d => d.reading_progress),
|
|
|
|
|
borderColor: 'rgb(245, 158, 11)',
|
|
|
|
|
backgroundColor: 'rgba(245, 158, 11, 0.1)',
|
|
|
|
|
tension: 0.3,
|
|
|
|
|
yAxisID: 'y1',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: 'Writing Progress',
|
|
|
|
|
data: sortedData.map(d => d.writing_progress),
|
|
|
|
|
borderColor: 'rgb(139, 92, 246)',
|
|
|
|
|
backgroundColor: 'rgba(139, 92, 246, 0.1)',
|
|
|
|
|
tension: 0.3,
|
|
|
|
|
yAxisID: 'y1',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: 'Maths Progress',
|
|
|
|
|
data: sortedData.map(d => d.maths_progress),
|
|
|
|
|
borderColor: 'rgb(236, 72, 153)',
|
|
|
|
|
backgroundColor: 'rgba(236, 72, 153, 0.1)',
|
|
|
|
|
tension: 0.3,
|
|
|
|
|
yAxisID: 'y1',
|
|
|
|
|
},
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
const chartData = {
|
|
|
|
|
labels: years,
|
|
|
|
|
datasets,
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const options: ChartOptions<'line'> = {
|
|
|
|
|
responsive: true,
|
|
|
|
|
maintainAspectRatio: false,
|
|
|
|
|
interaction: {
|
|
|
|
|
mode: 'index' as const,
|
|
|
|
|
intersect: false,
|
|
|
|
|
},
|
|
|
|
|
plugins: {
|
|
|
|
|
legend: {
|
|
|
|
|
position: 'top' as const,
|
|
|
|
|
labels: {
|
|
|
|
|
usePointStyle: true,
|
|
|
|
|
padding: 15,
|
|
|
|
|
font: {
|
|
|
|
|
size: 12,
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
title: {
|
|
|
|
|
display: true,
|
|
|
|
|
text: `${schoolName} - Performance Over Time`,
|
|
|
|
|
font: {
|
|
|
|
|
size: 16,
|
|
|
|
|
weight: 'bold',
|
|
|
|
|
},
|
|
|
|
|
padding: {
|
|
|
|
|
bottom: 20,
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
tooltip: {
|
|
|
|
|
backgroundColor: 'rgba(0, 0, 0, 0.8)',
|
|
|
|
|
padding: 12,
|
|
|
|
|
titleFont: {
|
|
|
|
|
size: 14,
|
|
|
|
|
},
|
|
|
|
|
bodyFont: {
|
|
|
|
|
size: 13,
|
|
|
|
|
},
|
|
|
|
|
callbacks: {
|
|
|
|
|
label: function(context) {
|
|
|
|
|
let label = context.dataset.label || '';
|
|
|
|
|
if (label) {
|
|
|
|
|
label += ': ';
|
|
|
|
|
}
|
|
|
|
|
if (context.parsed.y !== null) {
|
|
|
|
|
if (context.dataset.yAxisID === 'y1') {
|
|
|
|
|
// Progress scores
|
|
|
|
|
label += context.parsed.y.toFixed(1);
|
|
|
|
|
} else {
|
|
|
|
|
// Percentages
|
|
|
|
|
label += context.parsed.y.toFixed(1) + '%';
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return label;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
scales: {
|
|
|
|
|
y: {
|
|
|
|
|
type: 'linear' as const,
|
|
|
|
|
display: true,
|
|
|
|
|
position: 'left' as const,
|
|
|
|
|
title: {
|
|
|
|
|
display: true,
|
feat: add secondary school support with KS4 data and metric tooltips
- Backend: replace INNER JOIN ks2 with UNION ALL (ks2 + ks4) so primary
and secondary schools both appear in the main DataFrame
- Backend: add /api/national-averages endpoint computing means from live
data, replacing the hardcoded NATIONAL_AVG constant on the frontend
- Backend: add phase filter param to /api/schools; return phases from
/api/filters; fix hardcoded "phase": "Primary" in school detail endpoint
- Backend: add KS4 metric definitions (Attainment 8, Progress 8, EBacc,
English & Maths pass rates) to METRIC_DEFINITIONS and RANKING_COLUMNS
- Frontend: SchoolDetailView is now phase-aware — secondary schools show
a GCSE Results section (Att8, P8, E&M, EBacc) instead of SATs; phonics
tab hidden for secondary; admissions says Year 7 instead of Year 3;
history table shows KS4 columns; chart datasets switch for secondary
- Frontend: new MetricTooltip component (CSS-only ⓘ icon) backed by
METRIC_EXPLANATIONS — added to RWM, GPS, SEN, EAL, IDACI, progress
scores and all KS4 metrics throughout SchoolDetailView and SchoolCard
- Frontend: METRIC_EXPLANATIONS extended with KS4 terms (Attainment 8,
Progress 8, EBacc) and previously missing terms (SEN, EHCP, EAL, IDACI)
- Frontend: SchoolCard expands "RWM" to "Reading, Writing & Maths" and
shows Attainment 8 / English & Maths Grade 4+ for secondary schools
- Frontend: FilterBar adds Phase dropdown (Primary / Secondary / All-through)
- Frontend: HomeView hero copy updated; compact list shows phase-aware metric
- Global metadata updated to remove "primary only" framing
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-28 14:59:40 +00:00
|
|
|
text: isSecondary ? 'Score / Percentage (%)' : 'Percentage (%)',
|
2026-02-02 20:34:35 +00:00
|
|
|
font: {
|
|
|
|
|
size: 12,
|
|
|
|
|
weight: 'bold',
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
min: 0,
|
feat: add secondary school support with KS4 data and metric tooltips
- Backend: replace INNER JOIN ks2 with UNION ALL (ks2 + ks4) so primary
and secondary schools both appear in the main DataFrame
- Backend: add /api/national-averages endpoint computing means from live
data, replacing the hardcoded NATIONAL_AVG constant on the frontend
- Backend: add phase filter param to /api/schools; return phases from
/api/filters; fix hardcoded "phase": "Primary" in school detail endpoint
- Backend: add KS4 metric definitions (Attainment 8, Progress 8, EBacc,
English & Maths pass rates) to METRIC_DEFINITIONS and RANKING_COLUMNS
- Frontend: SchoolDetailView is now phase-aware — secondary schools show
a GCSE Results section (Att8, P8, E&M, EBacc) instead of SATs; phonics
tab hidden for secondary; admissions says Year 7 instead of Year 3;
history table shows KS4 columns; chart datasets switch for secondary
- Frontend: new MetricTooltip component (CSS-only ⓘ icon) backed by
METRIC_EXPLANATIONS — added to RWM, GPS, SEN, EAL, IDACI, progress
scores and all KS4 metrics throughout SchoolDetailView and SchoolCard
- Frontend: METRIC_EXPLANATIONS extended with KS4 terms (Attainment 8,
Progress 8, EBacc) and previously missing terms (SEN, EHCP, EAL, IDACI)
- Frontend: SchoolCard expands "RWM" to "Reading, Writing & Maths" and
shows Attainment 8 / English & Maths Grade 4+ for secondary schools
- Frontend: FilterBar adds Phase dropdown (Primary / Secondary / All-through)
- Frontend: HomeView hero copy updated; compact list shows phase-aware metric
- Global metadata updated to remove "primary only" framing
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-28 14:59:40 +00:00
|
|
|
max: isSecondary ? undefined : 100,
|
2026-02-02 20:34:35 +00:00
|
|
|
grid: {
|
|
|
|
|
color: 'rgba(0, 0, 0, 0.05)',
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
y1: {
|
|
|
|
|
type: 'linear' as const,
|
|
|
|
|
display: true,
|
|
|
|
|
position: 'right' as const,
|
|
|
|
|
title: {
|
|
|
|
|
display: true,
|
feat: add secondary school support with KS4 data and metric tooltips
- Backend: replace INNER JOIN ks2 with UNION ALL (ks2 + ks4) so primary
and secondary schools both appear in the main DataFrame
- Backend: add /api/national-averages endpoint computing means from live
data, replacing the hardcoded NATIONAL_AVG constant on the frontend
- Backend: add phase filter param to /api/schools; return phases from
/api/filters; fix hardcoded "phase": "Primary" in school detail endpoint
- Backend: add KS4 metric definitions (Attainment 8, Progress 8, EBacc,
English & Maths pass rates) to METRIC_DEFINITIONS and RANKING_COLUMNS
- Frontend: SchoolDetailView is now phase-aware — secondary schools show
a GCSE Results section (Att8, P8, E&M, EBacc) instead of SATs; phonics
tab hidden for secondary; admissions says Year 7 instead of Year 3;
history table shows KS4 columns; chart datasets switch for secondary
- Frontend: new MetricTooltip component (CSS-only ⓘ icon) backed by
METRIC_EXPLANATIONS — added to RWM, GPS, SEN, EAL, IDACI, progress
scores and all KS4 metrics throughout SchoolDetailView and SchoolCard
- Frontend: METRIC_EXPLANATIONS extended with KS4 terms (Attainment 8,
Progress 8, EBacc) and previously missing terms (SEN, EHCP, EAL, IDACI)
- Frontend: SchoolCard expands "RWM" to "Reading, Writing & Maths" and
shows Attainment 8 / English & Maths Grade 4+ for secondary schools
- Frontend: FilterBar adds Phase dropdown (Primary / Secondary / All-through)
- Frontend: HomeView hero copy updated; compact list shows phase-aware metric
- Global metadata updated to remove "primary only" framing
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-28 14:59:40 +00:00
|
|
|
text: isSecondary ? 'Progress 8 Score' : 'Progress Score',
|
2026-02-02 20:34:35 +00:00
|
|
|
font: {
|
|
|
|
|
size: 12,
|
|
|
|
|
weight: 'bold',
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
grid: {
|
|
|
|
|
drawOnChartArea: false,
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
x: {
|
|
|
|
|
grid: {
|
|
|
|
|
display: false,
|
|
|
|
|
},
|
|
|
|
|
title: {
|
|
|
|
|
display: true,
|
|
|
|
|
text: 'Year',
|
|
|
|
|
font: {
|
|
|
|
|
size: 12,
|
|
|
|
|
weight: 'bold',
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<div className={styles.chartWrapper}>
|
|
|
|
|
<Line data={chartData} options={options} />
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|