Skip to content

Commit f6de6e1

Browse files
Merge pull request #660 from ankitkr104/feature/graph-animation-659
[FEATURE]: Improve Graph Visualization with Smooth Animations #659
2 parents 96713a9 + 94219d4 commit f6de6e1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/app/about/page.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ import { Timeline } from '@/components/about/Timeline';
88
import { Team } from '@/components/about/Team';
99
import React from 'react';
1010
import { Line } from 'react-chartjs-2';
11-
import { Chart as ChartJS, LineElement, CategoryScale, LinearScale, PointElement } from 'chart.js';
11+
import { Chart as ChartJS, LineElement, CategoryScale, LinearScale, PointElement, Tooltip, Filler } from 'chart.js';
1212
import { motion } from 'framer-motion';
1313

14-
ChartJS.register(LineElement, CategoryScale, LinearScale, PointElement);
14+
ChartJS.register(LineElement, CategoryScale, LinearScale, PointElement, Tooltip, Filler);
1515

1616
export default function About() {
1717
const [stats, setStats] = useState({

0 commit comments

Comments
 (0)