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

109 lines
1.8 KiB
TypeScript

"use client";
import {
Chart as ChartJS,
CategoryScale,
LinearScale,
LineElement,
Title,
Tooltip,
Legend,
PointElement,
LogarithmicScale,
} from "chart.js";
import { colors } from "@/lib/colors";
import { useTheme } from "next-themes";
import { hexToRGB } from "@/lib/utils";
import { Line } from "react-chartjs-2";
ChartJS.register(
CategoryScale,
LinearScale,
LineElement,
Title,
Tooltip,
Legend,
PointElement,
LogarithmicScale
);
const LogScaleChart = ({ height = 350 }) => {
const { theme: mode } = useTheme();
const labels = [
"January",
"February",
"March",
"April",
"May",
"June",
"July",
];
const data: any = {
labels: labels,
datasets: [
{
label: "Dataset 1",
data: labels.map(() => 45),
borderColor: hexToRGB(colors.danger, 0.5),
},
],
};
const options: any = {
responsive: true,
plugins: {
legend: {
labels: {
color: mode === 'light' ? colors["default-600"] : colors["default-300"],
},
display: true,
text: "Chart.js Line Chart - Logarithmic",
},
},
scales: {
y: {
border: {
display: false
},
grid: {
drawTicks: false,
display: false,
},
ticks: {
color: mode === 'light' ? colors["default-600"] : colors["default-300"],
},
type: "logarithmic",
},
x: {
grid: {
drawTicks: false,
display: false,
},
ticks: {
color: mode === 'light' ? colors["default-600"] : colors["default-300"],
},
},
},
maintainAspectRatio: false,
};
return (
<div>
<Line options={options} data={data} height={height} />
</div>
);
};
export default LogScaleChart;