New to KendoReactStart a free 30-day trial

DiagramShapeTooltipProps
Premium

Updated on Apr 2, 2026

Defines a custom template for shape tooltips within the Diagram component. Use this to customize how tooltips appear when hovering over shapes.

tsx
import { Diagram, DiagramShapeTooltip } from '@progress/kendo-react-diagram';

const App = () => (
  <Diagram>
    <DiagramShapeTooltip>
      {(dataItem) => <span>{dataItem.tooltipText}</span>}
    </DiagramShapeTooltip>
  </Diagram>
);
NameTypeDefaultDescription

children

(dataItem: TDataItem) => ReactNode

A render function that receives the hovered shape data item and returns the tooltip content.

Not finding the help you need?
Contact Support