diff --git a/components/VendorDataView.tsx b/components/VendorDataView.tsx index c2abf96..9b431b7 100644 --- a/components/VendorDataView.tsx +++ b/components/VendorDataView.tsx @@ -475,7 +475,7 @@ const VendorDataView: React.FC = ({ bsrData = [], asinMetad
- + = ({ bsrData = [], asinMetad axisLine={false} tickLine={false} tick={{ fill: '#64748b', fontSize: 11, fontWeight: 500 }} - dx={-10} + tickFormatter={(v: number) => v >= 1_000_000 ? `${(v / 1_000_000).toFixed(1).replace(/\.0$/, '')}M` : v >= 1_000 ? `${Math.round(v / 1_000)}K` : String(v)} + width={45} /> = ({ bsrData = [], asinMetad
- + = ({ bsrData = [], asinMetad axisLine={false} tickLine={false} tick={{ fill: '#64748b', fontSize: 11, fontWeight: 500 }} - dx={-10} + tickFormatter={(v: number) => v >= 1_000_000 ? `${(v / 1_000_000).toFixed(1).replace(/\.0$/, '')}M` : v >= 1_000 ? `${Math.round(v / 1_000)}K` : String(v)} + width={45} />