New to Telerik UI for BlazorStart a free 30-day trial

Sankey Title

The Sankey diagram for Blazor allows you to specify a title for the diagram. This article explains how to add and configure the title.

Adding a Title

  1. Declare a <SankeyTitle> tag as a direct child of <TelerikSankey>.
  2. Set the Text parameter of the <SankeyTitle> tag.

You can customize the title through the parameter of the <SankeyTitle> tag and through the nested tags it exposes.

Basic Customization

The <SankeyTitle> tag exposes the following parameters for customization of the title:

ParameterType and Default ValueDescription
AlignSankeyTitleAlign enum
(Left)
The alignment of the title.
BackgroundstringThe background color of the title.
Colorstring
(rgb(66, 66, 66))
The text color of the title.
DescriptionstringThe accessible description of the Sankey. Added as aria-label to the <div class="k-sankey"> element.
Fontstring
(16px Helvetica Neue, Helvetica, Arial, sans-serif)
The font of the title.
PositionSankeyTitlePosition enum
(Top)
The position of the title.
Visiblebool?
(true)
Whether the title is visible.

Nested Customization Tags

The <SankeyTitle> tag exposes nested tags for further customization. The structure of the nested tags is <SankeyTitle*Specifics*>, where the specifics can be:

Example

Customizing the Sankey title by using nested tag settings

<TelerikSankey Data="@Data"
               DisableAutoLayout="true"
               Height="400px">
    <SankeyLinks ColorType="@SankeyLinksColorType.Source" />
    <SankeyTitle Text="Sample Sankey Diagram" Description="Sample Sankey Diagram" Font="bold 17px sans-serif">
        <SankeyTitleBorder Color="grey" DashType="@DashType.Solid" Width="1" />
        <SankeyTitleMargin Bottom="10" />
    </SankeyTitle>
</TelerikSankey>

@code {
    private SankeyData? Data { get; set; }

    protected override void OnInitialized()
    {
        var sourceNodes = 3;
        var destinationNodes = 3;

        Data = new SankeyData()
            {
                Nodes = new SankeyDataNodes(),
                Links = new SankeyDataLinks()
            };

        for (int i = 1; i <= sourceNodes + destinationNodes; i++)
        {
            var nodeDescriptor = i <= sourceNodes ? "Source" : "Destination";
            Data.Nodes.Add(new SankeyDataNode() { Id = i, Label = new SankeyDataNodeLabel() { Text = $"{nodeDescriptor} {i}" } });
        }

        for (int i = 1; i <= sourceNodes; i++)
        {
            for (int j = sourceNodes + 1; j <= sourceNodes + destinationNodes; j++)
            {
                Data.Links.Add(new SankeyDataLink()
                    {
                        SourceId = i,
                        TargetId = j,
                        Value = Random.Shared.Next(5, 30)
                    });
            }
        }
    }
}

See Also