mediahub-fe/app/[locale]/(protected)/charts/chart-js/charts-chartjs-other/bubble-chart.tsx

124 lines
2.0 KiB
TypeScript

"use client";
import {
Chart as ChartJS,
CategoryScale,
LinearScale,
LineElement,
Title,
Tooltip,
Legend,
PointElement,
} from "chart.js";
import { colors } from "@/lib/colors";
import { useTheme } from "next-themes";
import { hexToRGB } from "@/lib/utils";
import { Bubble } from "react-chartjs-2";
ChartJS.register(
CategoryScale,
LinearScale,
LineElement,
Title,
Tooltip,
Legend,
PointElement
);
const BubbleChart = ({ height = 350 }) => {
const { theme: mode } = useTheme();
const data: any = {
labels: ["January", "February", "March", "April", "May", "June", "July"],
datasets: [
{
label: "1st Dataset",
data: [
{
x: 20,
y: 30,
r: 15,
},
{
x: 40,
y: 10,
r: 10,
},
],
backgroundColor: colors.primary,
},
{
label: "2nd Dataset",
data: [
{
x: 20,
y: 60,
r: 15,
},
{
x: 40,
y: 60,
r: 10,
},
],
backgroundColor: colors.warning,
},
],
};
const options: any = {
responsive: true,
plugins: {
legend: {
labels: {
color: mode === 'light' ? colors["default-600"] : colors["default-300"],
},
},
},
scales: {
y: {
border: {
display: false
},
grid: {
drawTicks: false,
display: false,
},
ticks: {
color: mode === 'light' ? colors["default-600"] : colors["default-300"],
},
},
x: {
grid: {
drawTicks: false,
display: false,
},
ticks: {
color: mode === 'light' ? colors["default-600"] : colors["default-300"],
},
},
},
maintainAspectRatio: false,
};
return (
<div>
<Bubble options={options} data={data} height={height} />
</div>
);
};
export default BubbleChart;