98 lines
1.7 KiB
TypeScript
98 lines
1.7 KiB
TypeScript
import Chart from "react-apexcharts";
|
|
import { ApexOptions } from "apexcharts";
|
|
|
|
export default function BarChartOne() {
|
|
const options: ApexOptions = {
|
|
colors: ["var(--color-primary)"],
|
|
chart: {
|
|
fontFamily: "Outfit, sans-serif",
|
|
type: "bar",
|
|
height: 180,
|
|
toolbar: {
|
|
show: false,
|
|
},
|
|
},
|
|
plotOptions: {
|
|
bar: {
|
|
horizontal: false,
|
|
columnWidth: "39%",
|
|
borderRadius: 5,
|
|
borderRadiusApplication: "end",
|
|
},
|
|
},
|
|
dataLabels: {
|
|
enabled: false,
|
|
},
|
|
stroke: {
|
|
show: true,
|
|
width: 4,
|
|
colors: ["transparent"],
|
|
},
|
|
xaxis: {
|
|
categories: [
|
|
"Jan",
|
|
"Feb",
|
|
"Mar",
|
|
"Apr",
|
|
"May",
|
|
"Jun",
|
|
"Jul",
|
|
"Aug",
|
|
"Sep",
|
|
"Oct",
|
|
"Nov",
|
|
"Dec",
|
|
],
|
|
axisBorder: {
|
|
show: false,
|
|
},
|
|
axisTicks: {
|
|
show: false,
|
|
},
|
|
},
|
|
legend: {
|
|
show: true,
|
|
position: "top",
|
|
horizontalAlign: "left",
|
|
fontFamily: "Outfit",
|
|
},
|
|
yaxis: {
|
|
title: {
|
|
text: undefined,
|
|
},
|
|
},
|
|
grid: {
|
|
yaxis: {
|
|
lines: {
|
|
show: true,
|
|
},
|
|
},
|
|
},
|
|
fill: {
|
|
opacity: 1,
|
|
},
|
|
|
|
tooltip: {
|
|
x: {
|
|
show: false,
|
|
},
|
|
y: {
|
|
formatter: (val: number) => `${val}`,
|
|
},
|
|
},
|
|
};
|
|
const series = [
|
|
{
|
|
name: "Sales",
|
|
data: [168, 385, 201, 298, 187, 195, 291, 110, 215, 390, 280, 112],
|
|
},
|
|
];
|
|
return (
|
|
<div className="max-w-full overflow-x-auto custom-scrollbar">
|
|
<div id="chartOne" className="min-w-[1000px]">
|
|
<Chart options={options} series={series} type="bar" height={180} />
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|