fix(analytics): ObjectSaleChart tooltip показывает полный ₽/м², не /1000 (#1238)
All checks were successful
CI / changes (push) Successful in 6s
CI / changes (pull_request) Successful in 5s
CI / backend-tests (push) Has been skipped
CI / backend-tests (pull_request) Has been skipped
CI / frontend-tests (push) Successful in 49s
CI / frontend-tests (pull_request) Successful in 48s
All checks were successful
CI / changes (push) Successful in 6s
CI / changes (pull_request) Successful in 5s
CI / backend-tests (push) Has been skipped
CI / backend-tests (pull_request) Has been skipped
CI / frontend-tests (push) Successful in 49s
CI / frontend-tests (pull_request) Successful in 48s
Серия price делила data на 1000 без valueFormatter в tooltip → ось говорила
'тыс ₽/м²' но точки рисовались как 'обычные числа', tooltip показывал
'146' вместо '146 250 ₽/м²' (×1000 underreporting). Patch: убрал /1000
делитель, ось 'тыс ₽/м²' → '₽/м²', добавлен tooltip valueFormatter
'146 250 ₽/м²' через toLocaleString('ru'). 82/82 frontend тестов зелёные.
Closes #1238
This commit is contained in:
parent
06c4bb9fd6
commit
c97072314e
1 changed files with 6 additions and 2 deletions
|
|
@ -56,10 +56,14 @@ export function ObjectSaleChart({ objId }: { objId: number | string }) {
|
||||||
yAxisIndex: 1,
|
yAxisIndex: 1,
|
||||||
smooth: true,
|
smooth: true,
|
||||||
symbol: "circle",
|
symbol: "circle",
|
||||||
data: d.price.map((v) => (v ? Math.round(v / 1000) : null)),
|
data: d.price.map((v) => (v ? Math.round(v) : null)),
|
||||||
lineStyle: { color: type === "apartments" ? "#0a7a3a" : "#c2410c" },
|
lineStyle: { color: type === "apartments" ? "#0a7a3a" : "#c2410c" },
|
||||||
itemStyle: { color: type === "apartments" ? "#0a7a3a" : "#c2410c" },
|
itemStyle: { color: type === "apartments" ? "#0a7a3a" : "#c2410c" },
|
||||||
connectNulls: true,
|
connectNulls: true,
|
||||||
|
tooltip: {
|
||||||
|
valueFormatter: (v: number | null) =>
|
||||||
|
v == null ? "—" : `${v.toLocaleString("ru")} ₽/м²`,
|
||||||
|
},
|
||||||
},
|
},
|
||||||
]);
|
]);
|
||||||
return {
|
return {
|
||||||
|
|
@ -69,7 +73,7 @@ export function ObjectSaleChart({ objId }: { objId: number | string }) {
|
||||||
xAxis: { type: "category", data: months },
|
xAxis: { type: "category", data: months },
|
||||||
yAxis: [
|
yAxis: [
|
||||||
{ type: "value", name: "шт", position: "left" },
|
{ type: "value", name: "шт", position: "left" },
|
||||||
{ type: "value", name: "тыс ₽/м²", position: "right" },
|
{ type: "value", name: "₽/м²", position: "right" },
|
||||||
],
|
],
|
||||||
series,
|
series,
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue