This commit is contained in:
MuslemRahimi 2025-02-23 13:32:31 +01:00
parent 9397b28c35
commit e116a9b24d

View File

@ -420,7 +420,7 @@
animation: false,
},
title: {
text: `<div class="grid grid-cols-2 w-[200px] sm:w-[500px] -mb-3.5 text-xs font-[501] text-gray-300">
text: `<div class="grid grid-cols-2 w-[200px] sm:w-[500px] -mb-3.5 text-xs font-[501] text-gray-400">
<h3 class="text-left">${$screenWidth && $screenWidth < 640 ? "Past Year" : "Past 12 Months"}</h3>
<h3 class="text-right">${$screenWidth && $screenWidth < 640 ? "Next Year" : "12 Month Forecast"}</h3>
</div>`,
@ -435,16 +435,14 @@
gridLineWidth: 1,
gridLineColor: "#111827",
type: "datetime",
endOnTick: false,
labels: {
style: {
color: "#fff",
},
formatter: function () {
const date = new Date(this.value);
const isMobile = $screenWidth < 640;
return isMobile
? date.toLocaleDateString("en-US", { month: "short" })
: date.toLocaleDateString("en-US", {
return date.toLocaleDateString("en-US", {
month: "short",
year: "numeric",
});