简体   繁体   中英

Is it possible to render recharts tooltip event when there is no value?

Here is an example http://jsfiddle.net/obg92kw3/

I want to render tooltip when hovering over categories without value. Like Page C , Page D , Page E .

Yeah, you just need to give them 0 values. Updated the jsfiddle to show it working here http://jsfiddle.net/obg92kw3/1/ .

data should now look like this:

const data = [
      {name: 'Page A', uv: 4000},
      {name: 'Page B', uv: 3000},
      {name: 'Page C', uv: 0},
      {name: 'Page D', uv: 0},
      {name: 'Page E', uv: 0},
      {name: 'Page F', uv: 2390},
      {name: 'Page G', uv: 3490},
];

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM