openreplay/frontend/app/components/shared/Insights/ScatterChart/ScatterChart.tsx
Andrey Babushkin fd5c0c9747
Add lokalisation (#3092)
* applied eslint

* add locales and lint the project

* removed error boundary

* updated locales

* fix min files

* fix locales
2025-03-06 17:43:15 +01:00

54 lines
1.4 KiB
TypeScript

import React from 'react';
import { useTranslation } from 'react-i18next';
import {
ScatterChart,
Scatter,
Tooltip,
CartesianGrid,
XAxis,
YAxis,
ZAxis,
Legend,
ResponsiveContainer,
} from 'recharts';
interface Props {
dataFirst: any;
dataSecond: any;
}
function ScatterChartComponent(props: Props) {
const { dataFirst, dataSecond } = props;
const { t } = useTranslation();
return (
<div className="rounded border shadow">
<div className="text-lg p-3 border-b bg-gray-lightest">
{t('Scatter Chart')}
</div>
<div className="">
<ResponsiveContainer height={500} width="100%">
<ScatterChart
width={730}
height={250}
margin={{
top: 20,
right: 20,
bottom: 10,
left: 10,
}}
>
<CartesianGrid strokeDasharray="3 3" />
<XAxis dataKey="x" name="stature" unit="cm" />
<YAxis dataKey="y" name="weight" unit="kg" />
<ZAxis dataKey="z" range={[64, 144]} name="score" unit="km" />
<Tooltip cursor={{ strokeDasharray: '3 3' }} />
<Legend />
<Scatter name="A school" data={dataFirst} fill="#8884d8" />
<Scatter name="B school" data={dataSecond} fill="#82ca9d" />
</ScatterChart>
</ResponsiveContainer>
</div>
</div>
);
}
export default ScatterChartComponent;