This commit is contained in:
MuslemRahimi 2024-06-30 10:46:30 +02:00
parent 7587c601fe
commit 3929f7c6f9
3 changed files with 3 additions and 3 deletions

View File

@ -89,7 +89,7 @@ function getPlotOptions() {
axisLabel: {
color: '#6E7079', // Change label color to white
formatter: function (value) {
value = Math.max(value, 0);
//value = Math.max(value, 0);
return '$'+(value / denominator)?.toFixed(1) + unit; // Format value in millions
},
},

View File

@ -84,7 +84,7 @@ function getPlotOptions() {
color: '#6E7079', // Change label color to white
formatter: function (value) {
value = Math.max(value, 0);
return '$'+(value / denominator)?.toFixed(1) + unit; // Format value in millions
return (value / denominator)?.toFixed(1) + unit; // Format value in millions
},
},
},

View File

@ -9,7 +9,7 @@ import { onMount } from 'svelte';
export let data;
let cloudFrontUrl = import.meta.env.VITE_IMAGE_URL;
let mode = false;
let mode = true;
const emailAddress = 'support@stocknear.com';
function toggleMode()