Files
site/res/assets/js/dashboards/dashboard4.js
2025-12-26 22:35:18 +08:00

66 lines
1.8 KiB
JavaScript

document.addEventListener("DOMContentLoaded", function () {
var investments = {
series: [
{
name: "BTC",
data: [3500, 1000, 4000, 2500, 3500, 1500, 2500, 1900, 3500, 2000, 4500],
},
{
name: "ETH",
data: [3000, 2100, 3500, 1000, 2000, 1000, 5000, 2000, 1100, 2500, 3300],
},
],
chart: {
fontFamily: "inherit",
foreColor: "#adb0bb",
height: 325,
type: "line",
toolbar: {
show: false,
},
},
legend: {
show: false,
},
stroke: {
width: 4,
curve: "smooth",
},
grid: {
borderColor: "transparent",
},
colors: ["var(--bs-primary)", "var(--bs-secondary)"],
fill: {
type: "gradient",
gradient: {
shade: "dark",
gradientToColors: ["#6993ff"],
shadeIntensity: 1,
type: "horizontal",
opacityFrom: 1,
opacityTo: 1,
stops: [0, 100, 100, 100],
},
},
markers: {
size: 0,
},
xaxis: {
type: 'category',
categories: [
"Jan", "Feb", "Mar", "Apr", "May", "Jun", "July", "Aug", "Sept", "Oct", "Nov"
],
axisBorder: {
show: false
},
axisTicks: {
show: false,
}
},
tooltip: {
theme: "dark",
},
};
new ApexCharts(document.querySelector("#investments"), investments).render();
});