New to KendoReact? Start a free 30-day trial
Customization
You can customize the KendoReact Sankey diagram in three ways:
- By configuring the properties for all elements of the Sankey diagram.
- By using the
data
property to apply the desired styles only to specific instances of the Sankey diagram elements. - By using the
style
property to apply component-wide styles
Customizing the Sankey Chart Elements
You can configure the labels, nodes, and links displayed on the Sankey Diagram by using the following properties:
links
—provides options to set thecolorType
of the link to eitherstatic
,source
, ortarget
. It also allows you to control the opacity and highlighting of the link.nodes
—provides options to modify the color, opacity, offset, padding, and width of the node.labels
—provides options to modify the font, color, opacity, alignment, padding, margin, border, and offset of the label. It also allows you to set thevisible
property to show or hide the label.
The following demo shows how to set the links
, nodes
, and labels
options.
Change Theme
Theme
Loading ...
Customizing Element Instances
As the properties set to data
take precedence, using the data
property allows you to target select element instances and apply a specific configuration only to these instances.
The demo below shows how to configure and use the data
prop to:
- Change the color of the first link.
- Change the
offset
of the node with the label textmobile
.
Change Theme
Theme
Loading ...
Applying Component-Wide Styles
Another way to customize the Sankey Diagram is to configure the CSS styles of the entire component by using its style
property. This approach allows you to control styles like width
, height
, and backgroundColor
.
jsx
<Sankey style={{ width: 900, height: 600, backgroundColor: 'transparent' }} data={data} />