Add an `onHover` function to the Spreadsheet component
Would be really helpful if there was an onHover callback function that was scoped down to the cell:
onHover?: (cell: CellComponent<CellType>) => void;
May open a contributing PR to add this functionality if I get the time
Thank you for the feedback, what's the use case?
Need to display more information that won't fit in the column / row labels, so would like to show it on hover (like in a tooltip or a separate info box)
Won’t a custom cell component work better for your use case?
are you referring to the custom cell example in storybook? (it wasnt clear to me what this was doing when I first looked at it)
just noticed the onMouseOver callback there...I'm assuming the Column / Row headers can be customized as well?