126 lines
2.2 KiB
TypeScript
126 lines
2.2 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 ScriptBubble = ({ 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,
|
|
},
|
|
],
|
|
},
|
|
{
|
|
label: "2nd Dataset",
|
|
data: [
|
|
{
|
|
x: 20,
|
|
y: 60,
|
|
r: 15,
|
|
},
|
|
{
|
|
x: 40,
|
|
y: 60,
|
|
r: 10,
|
|
},
|
|
],
|
|
},
|
|
],
|
|
};
|
|
const options: any = {
|
|
aspectRatio: 1,
|
|
responsive: true,
|
|
plugins: {
|
|
legend: {
|
|
labels: {
|
|
color: mode === 'light' ? colors["default-600"] : colors["default-300"],
|
|
},
|
|
},
|
|
},
|
|
elements: {
|
|
point: {
|
|
backgroundColor: function (context: any) {
|
|
const index = context.dataIndex;
|
|
const value = context.dataset.data[index];
|
|
return value < 0 ? "red" : index % 2 ? "blue" : "green";
|
|
},
|
|
},
|
|
},
|
|
scales: {
|
|
y: {
|
|
border: {
|
|
display: false
|
|
},
|
|
grid: {
|
|
display: false,
|
|
},
|
|
ticks: {
|
|
color: mode === 'light' ? colors["default-600"] : colors["default-300"],
|
|
},
|
|
},
|
|
x: {
|
|
grid: {
|
|
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 ScriptBubble;
|