Cell Error Tooltips
When a cell containing a formula error is selected, the editor shows a tooltip with the error name and a human-readable description. If the error has an origin reference, it is shown as well.
Error tooltips are enabled by default. To disable them, pass showErrorTooltips={false}.
Interactive Demo
Section titled “Interactive Demo”// Enabled by default — no prop needed<SpreadsheetEditor model={model} />
// Explicitly disable<SpreadsheetEditor model={model} showErrorTooltips={false} />