Commit a14269fc authored by Rais Aryaguna's avatar Rais Aryaguna

Merge remote-tracking branch 'origin/develop'

parents 7bf4c136 efc9e47d
......@@ -111,7 +111,7 @@
"@types/lodash": "^4.17.20",
"@types/node": "^24.2.0",
"@types/nprogress": "^0.2.3",
"@types/react": "^19.1.9",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.1.7",
"@types/stylis": "^4.2.7",
"@types/turndown": "^5.0.5",
......@@ -5602,12 +5602,12 @@
"license": "MIT"
},
"node_modules/@types/react": {
"version": "19.2.2",
"resolved": "https://registry.npmjs.org/@types/react/-/react-19.2.2.tgz",
"integrity": "sha512-6mDvHUFSjyT2B2yeNx2nUgMxh9LtOWvkhIU3uePn2I2oyNymUAX1NIsdgviM4CH+JSrp2D2hsMvJOkxY+0wNRA==",
"version": "19.2.7",
"resolved": "https://registry.npmjs.org/@types/react/-/react-19.2.7.tgz",
"integrity": "sha512-MWtvHrGZLFttgeEj28VXHxpmwYbor/ATPYbBfSFZEIRK0ecCFLl2Qo55z52Hss+UV9CRN7trSeq1zbgx7YDWWg==",
"license": "MIT",
"dependencies": {
"csstype": "^3.0.2"
"csstype": "^3.2.2"
}
},
"node_modules/@types/react-dom": {
......@@ -7162,9 +7162,9 @@
}
},
"node_modules/csstype": {
"version": "3.1.3",
"resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz",
"integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==",
"version": "3.2.3",
"resolved": "https://registry.npmjs.org/csstype/-/csstype-3.2.3.tgz",
"integrity": "sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==",
"license": "MIT"
},
"node_modules/data-view-buffer": {
......
......@@ -15,7 +15,7 @@ export function ChartScatter({ chart }: Props) {
const chartOptions = useChart({
chart: { zoom: { enabled: true, type: 'xy' } },
legend: { show: true },
xaxis: { tickAmount: 8, labels: { formatter: (val) => parseFloat(val).toFixed(1) } },
xaxis: { tickAmount: 8, labels: { formatter: (val: any) => parseFloat(val).toFixed(1) } },
markers: { size: 6 },
});
......
This diff is collapsed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment