New to Telerik UI for ASP.NET MVC? Start a free 30-day trial

Signature Appearance

Updated over 6 months ago

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