• What is KendoReact
  • Getting Started
  • Server Components
  • Components
    • Animation
    • Barcodes
    • Buttons
    • Chartsupdated
    • Common Utilities
    • Conversational UIupdated
    • Data Gridupdated
    • Data Query
    • Data Tools
    • Date Inputs
    • Date Math
    • Dialogs
    • Drawing
    • Dropdownsupdated
    • Editor
    • Excel Export
    • File Saver
    • Formupdated
    • Ganttupdated
    • Gauges
    • Indicators
    • Inputsupdated
    • Labels
    • Layoutupdated
    • ListBox
    • ListView
    • Map
    • Notification
    • OrgChartnew
    • PDF Processing
    • PDFViewer
    • PivotGrid
    • Popup
    • Progress Bars
    • Ripple
    • Scheduler
    • ScrollView
    • Sortable
    • Spreadsheetupdated
    • TaskBoard
    • Tooltips
    • TreeList
    • TreeViewupdated
    • Upload
  • Sample Applications
  • Styling & Themes
  • Common Features
  • Project Setup
  • Knowledge Base
  • Changelog
  • Updates
  • Troubleshooting

SankeyProps

Represents the props of the KendoReact Sankey component.

NameTypeDefaultDescription

className?

string

Sets additional CSS classes to the Sankey component.

data

SankeyData

The data of the Sankey component containing the links and nodes props.

labels?

SankeyLabelDefaults

The labels default props of the Sankey component. The value will be applied to all labels unless overridden by the nodes label prop of the data prop.

SankeyLinkDefaults

The links default props of the Sankey component. The value will be applied to all links unless overridden by the links prop of the data prop.

nodes?

SankeyNodeDefaults

The nodes default props of the Sankey component. The value will be applied to all nodes unless overridden by the nodes prop of the data prop.

onLinkEnter?

(event: SankeyEvent) => void

Fires when the mouse pointer enters a link. Similar to the mouseenter event,

onLinkLeave?

(event: SankeyEvent) => void

Fires when the mouse pointer leaves a link. Similar to the mouseleave event.

onNodeEnter?

(event: SankeyEvent) => void

Fires when the mouse pointer enters a node. Similar to the mouseenter event.

onNodeLeave?

(event: SankeyEvent) => void

Fires when the mouse pointer leaves a node. Similar to the mouseleave event.

style?

React.CSSProperties

The styles that are applied to the Sankey component.