gpt4 book ai didi

javascript - Recharts:关闭条形图的背景悬停

转载 作者:行者123 更新时间:2023-11-29 16:32:44 27 4
gpt4 key购买 nike

有没有办法关闭 Recharts 中条形图悬停时出现的灰色背景? ?

Screenshot of bar chart with gray background appearing behind bars.

使用版本 1.4.1。代码(简化)如下所示:

import React from "react"

// Recharts
import { Bar, BarChart, CartesianGrid, ResponsiveContainer, Tooltip, XAxis, YAxis } from "recharts"

import CustomTooltip from "../CustomTooltip"

const BarChart = ({ chartData, chartInfo }) => (
<ResponsiveContainer width="99%" height={260}>
<BarChart data={chartData}>
<XAxis
dataKey="label"
type="category"
allowDuplicatedCategory={true}
tickLine={false}
orientation="bottom"
/>

<YAxis
tickLine={false}
orientation="left"
axisLine={false}
/>

<Tooltip
isAnimationActive={false}
separator={": "}
content={<CustomTooltip />}
/>

<CartesianGrid vertical={false} />

{chartInfo.map(bar => (
<Bar
key={bar.dataKey}
name={bar.name}
dataKey={bar.dataKey}
isAnimationActive={false}
/>
))}
</BarChart>
</ResponsiveContainer>
)

export default BarChart

我倒在了 API docs 上以及查看源代码。似乎不是一种方法,但一些演示已将其禁用,例如 this one .

我尝试使用自定义形状设置我的演示,并使用 Cell 而不是 Bar 进行渲染,但悬停时背景仍然存在。背景颜色是 #ccc 但使用该关键字搜索存储库没有产生明确的方法或 Prop 来尝试覆盖或 Hook 。

最佳答案

您可以使用 cursor支持 <Tooltip />实现您的需求:

<Tooltip cursor={{fill: '#f00'}} />

Here 是我根据他们文档中的一些示例制作的工作 fiddle 。

您可以简单地使用 transparent作为 fill 的值属性(property)。

const {BarChart, Bar, XAxis, YAxis, CartesianGrid, Tooltip, Legend} = Recharts;
const data = [
{name: 'Page A', uv: 4000, pv: 2400, amt: 2400},
{name: 'Page B', uv: 3000, pv: 1398, amt: 2210},
{name: 'Page C', uv: 2000, pv: 9800, amt: 2290},
{name: 'Page D', uv: 2780, pv: 3908, amt: 2000},
{name: 'Page E', uv: 1890, pv: 4800, amt: 2181},
{name: 'Page F', uv: 2390, pv: 3800, amt: 2500},
{name: 'Page G', uv: 3490, pv: 4300, amt: 2100},
];
const SimpleBarChart = React.createClass({
render () {
return (
<BarChart width={600} height={300} data={data}
margin={{top: 5, right: 30, left: 20, bottom: 5}}>
<CartesianGrid strokeDasharray="3 3"/>
<XAxis dataKey="name"/>
<YAxis/>
<Tooltip cursor={{fill: 'transparent'}}/>
<Legend />
<Bar dataKey="pv" fill="#8884d8" />
<Bar dataKey="uv" fill="#82ca9d" />
</BarChart>
);
}
})

ReactDOM.render(
<SimpleBarChart />,
document.getElementById('container')
);
body {
margin: 0;
}

#container {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
padding: 10px;
width: 800px;
height: 800px;
background-color: #fff;
}
<script src="https://cdnjs.cloudflare.com/ajax/libs/babel-core/5.8.24/browser.js"></script>
<script src="https://npmcdn.com/react@15.6.2/dist/react-with-addons.min.js"></script>
<script src="https://npmcdn.com/react-dom@15.6.2/dist/react-dom.min.js"></script>
<script src="https://npmcdn.com/prop-types@15.6.2/prop-types.min.js"></script>
<script src="https://npmcdn.com/recharts@1.4.2/umd/Recharts.min.js"></script>

<div id="container">
<!-- This element's contents will be replaced with your component. -->
</div>

关于javascript - Recharts:关闭条形图的背景悬停,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54330155/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com