about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/components/Graphs/LineGraph.tsx13
1 files changed, 4 insertions, 9 deletions
diff --git a/src/components/Graphs/LineGraph.tsx b/src/components/Graphs/LineGraph.tsx
index 4cbea05..f16cc40 100644
--- a/src/components/Graphs/LineGraph.tsx
+++ b/src/components/Graphs/LineGraph.tsx
@@ -4,7 +4,6 @@ import {
 	LinearScale,
 	PointElement,
 	LineElement,
-	Title,
 	Tooltip,
 } from 'chart.js';
 import { Line } from 'react-chartjs-2';
@@ -14,19 +13,12 @@ ChartJS.register(
 	LinearScale,
 	PointElement,
 	LineElement,
-	Title,
 	Tooltip
 );
 
 export default function LineGraph() {
 	const options = {
 		responsive: true,
-		plugins: {
-			title: {
-				display: true,
-				text: 'File writes per second',
-			},
-		},
 		scales: {
 			x: {
 				grid: {
@@ -67,6 +59,9 @@ export default function LineGraph() {
 	};
 
 	return (
-		<Line data={data} options={options} />
+		<div>
+			<p className="text-center">File writes per second</p>
+			<Line data={data} options={options} />
+		</div>
 	)
 }