167 lines
3.3 KiB
TypeScript
167 lines
3.3 KiB
TypeScript
"use client";
|
|
import React, { useState } from "react";
|
|
import dynamic from "next/dynamic";
|
|
const Chart = dynamic(() => import("react-apexcharts"), { ssr: false });
|
|
import { colors } from "@/lib/colors";
|
|
import { useTheme } from "next-themes";
|
|
import { hexToRGB } from "@/lib/utils";
|
|
import { useConfig } from "@/hooks/use-config";
|
|
import { getGridConfig, getLabel } from "@/lib/appex-chart-options";
|
|
|
|
interface DataRange {
|
|
min: number;
|
|
max: number;
|
|
}
|
|
const BrushLinechart = () => {
|
|
const [config] = useConfig();
|
|
const { theme: mode } = useTheme();
|
|
|
|
|
|
function generateDayWiseTimeSeries(baseval: number, count: number, yrange: DataRange) {
|
|
var i = 0;
|
|
var series: [number, number][] = [];
|
|
while (i < count) {
|
|
var x = baseval;
|
|
var y =
|
|
Math.floor(Math.random() * (yrange.max - yrange.min + 1)) + yrange.min;
|
|
|
|
series.push([x, y]);
|
|
baseval += 86400000;
|
|
i++;
|
|
}
|
|
return series;
|
|
}
|
|
|
|
var data = generateDayWiseTimeSeries(new Date("11 Feb 2017").getTime(), 185, {
|
|
min: 30,
|
|
max: 90,
|
|
});
|
|
const series = [
|
|
{
|
|
data: data,
|
|
},
|
|
];
|
|
|
|
const options: any = {
|
|
chart: {
|
|
id: "chart2",
|
|
|
|
height: 230,
|
|
toolbar: {
|
|
autoSelected: "pan",
|
|
show: false,
|
|
},
|
|
},
|
|
colors: [
|
|
colors.primary,
|
|
],
|
|
grid: getGridConfig(),
|
|
stroke: {
|
|
width: 3,
|
|
},
|
|
dataLabels: {
|
|
enabled: false,
|
|
},
|
|
fill: {
|
|
opacity: 1,
|
|
},
|
|
markers: {
|
|
size: 0,
|
|
},
|
|
xaxis: {
|
|
type: "datetime",
|
|
axisBorder: {
|
|
show: false,
|
|
},
|
|
axisTicks: {
|
|
show: false,
|
|
},
|
|
labels: getLabel(mode === 'light' ? colors["default-600"] : colors["default-300"]),
|
|
},
|
|
yaxis: {
|
|
tickAmount: 2,
|
|
labels: getLabel(mode === 'light' ? colors["default-600"] : colors["default-300"]),
|
|
},
|
|
padding: {
|
|
top: 0,
|
|
right: 0,
|
|
bottom: 0,
|
|
left: 0,
|
|
},
|
|
};
|
|
|
|
const seriesLine = [
|
|
{
|
|
data: data,
|
|
},
|
|
];
|
|
|
|
const optionsLine: any = {
|
|
chart: {
|
|
id: "chart1",
|
|
height: 130,
|
|
brush: {
|
|
target: "chart2",
|
|
enabled: true,
|
|
},
|
|
selection: {
|
|
enabled: true,
|
|
xaxis: {
|
|
min: new Date("19 Jun 2017").getTime(),
|
|
max: new Date("14 Aug 2017").getTime(),
|
|
},
|
|
},
|
|
},
|
|
colors: [colors.info],
|
|
fill: {
|
|
type: "gradient",
|
|
gradient: {
|
|
opacityFrom: 0.91,
|
|
opacityTo: 0.1,
|
|
},
|
|
},
|
|
xaxis: {
|
|
type: "datetime",
|
|
tooltip: {
|
|
enabled: false,
|
|
},
|
|
labels: getLabel(mode === 'light' ? colors["default-600"] : colors["default-300"]),
|
|
axisBorder: {
|
|
show: false,
|
|
},
|
|
axisTicks: {
|
|
show: false,
|
|
},
|
|
},
|
|
yaxis: {
|
|
tickAmount: 2,
|
|
labels: getLabel(mode === 'light' ? colors["default-600"] : colors["default-300"]),
|
|
},
|
|
};
|
|
|
|
return (
|
|
<div id="wrapper">
|
|
<div id="chart-line2">
|
|
<Chart
|
|
options={options}
|
|
series={series}
|
|
type="line"
|
|
height={230}
|
|
width={"100%"}
|
|
/>
|
|
</div>
|
|
<div id="chart-line">
|
|
<Chart
|
|
options={optionsLine}
|
|
series={seriesLine}
|
|
type="area"
|
|
height={130}
|
|
width={"100%"}
|
|
/>
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default BrushLinechart;
|