簡體   English   中英

圖表:關閉條形圖的背景懸停

[英]Recharts: Turn off background hover for bar charts

有沒有一種方法可以關閉“圖表”中條形圖懸停在鼠標懸停時出現的灰色背景?

條形圖的屏幕快照,帶有出現在條形后面的灰色背景。

使用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文檔並瀏覽了源代碼。 似乎沒有一個方法可以做到這一點,但有些演示有禁用它,像這一個

我嘗試設置具有類似演示的自定義形狀的礦井,並使用Cell而不是Bar渲染,但是背景仍然懸停在那兒。 背景顏色為#ccc但是使用該關鍵字搜索存儲庫不會產生清晰的方法或道具來嘗試覆蓋或插入。

您可以使用<Tooltip />上的cursor道具實現所需的功能:

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

是我根據他們的文檔中的一些示例制作的一個小提琴。

您可以簡單地將transparent用作fill屬性的值。

 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> 

您提到的灰色區域稱為cursor 引用Tooltip API文檔:

如果設置為false,則在激活工具提示時不會繪制任何光標。

因此,您的問題的答案是:

<Tooltip cursor={false} />

順便說一句,我正在使用recharts@1.7.1

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM