New to Telerik UI for ASP.NET MVCStart a free 30-day trial

Signature Appearance

Updated on Oct 28, 2025

The Telerik UI Signature for ASP.NET MVC component enables you to change various appearance aspects about the component.

The following example demonstrates a Signature component with custom appearance settings.

Razor
    @(Html.Kendo().Signature()
                .StrokeWidth(4)
                .BackgroundColor("#fad980")
                .Color("#212121")
                .Width(500)
                .Height(200)
                )

Background Color

To modify the background color of the Signature container, use its BackgroundColor configuration.

Razor
    @(Html.Kendo().Signature()
                .BackgroundColor("#fad980"))

Stroke Color

You can also change the stroke color of the Signature by using its Color configuration.

Razor
    @(Html.Kendo().Signature()
                .Color("#fad980"))

Stroke Width

To update the stroke width of the Signature, utilize its StrokeWidth configuration.

Razor
    @(Html.Kendo().Signature()
                .StrokeWidth(4))

See Also