fix: 利润结构Tooltip中value改为中文'金额'
This commit is contained in:
@@ -169,7 +169,7 @@ export function BossPage() {
|
||||
<CartesianGrid strokeDasharray="3 3" />
|
||||
<XAxis dataKey="name" tick={{ fontSize: 10 }} angle={-20} textAnchor="middle" height={60} />
|
||||
<YAxis tickFormatter={(v) => v >= 10000 ? `${(v / 10000).toFixed(0)}万` : v} tick={{ fontSize: 10 }} />
|
||||
<Tooltip formatter={(v: any) => formatCurrency(v)} />
|
||||
<Tooltip labelFormatter={(label) => label} formatter={(v: any) => [formatCurrency(v), '金额']} />
|
||||
<Bar dataKey="value" radius={[4, 4, 0, 0]} shape={(props: any) => {
|
||||
const { x, y, width, height, payload, fill } = props
|
||||
if (!payload.value || payload.value === 0) return <rect />
|
||||
|
||||
Reference in New Issue
Block a user