Coder Social home page Coder Social logo

Comments (5)

alexfauquette avatar alexfauquette commented on August 16, 2024 1

@jwitthaus The issue it that you customize the axis tooltip like if it was the item tootlip, but they don't have the same props. The main difference that impact your example:

  • dataIndex is directly in the props. not into an itemData object
  • series is not one series, but an array of multiple series (sorry but english does not have plural form) you will have to map

Here is an working example

const CustomItemTooltipContent = (props) => {
  const { dataIndex, series } = props;
  return (
    <Paper sx={{ padding: 3, backgroundColor: series.color }}>
      <p>{series.label}</p>
      <p>{series[0].data[dataIndex]}</p>
      <p>{series[1].data[dataIndex]}</p>
      <p>{series[2].data[dataIndex]}</p>
    </Paper>
  );
};

from mui-x.

michelengelen avatar michelengelen commented on August 16, 2024

Hey @jwitthaus I cannot reproduce the issue you are facing.
Could you try and replicate this with more precise steps and explanation?

from mui-x.

jwitthaus avatar jwitthaus commented on August 16, 2024

@michelengelen here is a code sandbox. Hope this helps: https://codesandbox.io/p/sandbox/github/jwitthaus/barcharttest/tree/master/?file=%2Fsrc%2FApp.js
when hovering you get the runtime error

from mui-x.

jwitthaus avatar jwitthaus commented on August 16, 2024

awesome this works and makes sense. Thank you very much. Is there a documentation for the axis tooltip props?

from mui-x.

alexfauquette avatar alexfauquette commented on August 16, 2024

Not that I'm aware of. The best documentation might be to look at the default component implementation: https://github.com/mui/mui-x/blob/master/packages/x-charts/src/ChartsTooltip/DefaultChartsItemTooltipContent.tsx

I keep this issue open to know we need to add such documentation

from mui-x.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.