deving
This commit is contained in:
65
res/assets/js/dashboards/dashboard4.js
Normal file
65
res/assets/js/dashboards/dashboard4.js
Normal file
@@ -0,0 +1,65 @@
|
||||
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();
|
||||
});
|
||||
Reference in New Issue
Block a user