Ver a proveniência

format number in chart

tags/Baseline_30082024_FRONTEND_UAT
MSI\User há 1 ano
ascendente
cometimento
c3504e42e0
2 ficheiros alterados com 20 adições e 0 eliminações
  1. +10
    -0
      src/components/CompanyTeamCashFlow/CompanyTeamCashFlow.tsx
  2. +10
    -0
      src/components/ProjectCashFlow/ProjectCashFlow.tsx

+ 10
- 0
src/components/CompanyTeamCashFlow/CompanyTeamCashFlow.tsx Ver ficheiro

@@ -160,6 +160,11 @@ const CompanyTeamCashFlow: React.FC = () => {
min: 0,
max: 3700000,
tickAmount: 5,
labels: {
formatter: function (val) {
return val.toLocaleString()
}
}
},
{
show: false,
@@ -180,6 +185,11 @@ const CompanyTeamCashFlow: React.FC = () => {
min: 0,
max: 21000000,
tickAmount: 5,
labels: {
formatter: function (val) {
return val.toLocaleString()
}
}
},
{
show: false,


+ 10
- 0
src/components/ProjectCashFlow/ProjectCashFlow.tsx Ver ficheiro

@@ -152,6 +152,11 @@ const ProjectCashFlow: React.FC = () => {
min: 0,
max: 350000,
tickAmount: 5,
labels: {
formatter: function (val) {
return val.toLocaleString()
}
}
},
{
show: false,
@@ -172,6 +177,11 @@ const ProjectCashFlow: React.FC = () => {
min: 0,
max: 850000,
tickAmount: 5,
labels: {
formatter: function (val) {
return val.toLocaleString()
}
}
},
{
show: false,


Carregando…
Cancelar
Guardar