ui fix
This commit is contained in:
parent
7587c601fe
commit
3929f7c6f9
@ -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
|
||||
},
|
||||
},
|
||||
|
||||
@ -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
|
||||
},
|
||||
},
|
||||
},
|
||||
|
||||
@ -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()
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user