Signature Appearance
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.
@(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.
@(Html.Kendo().Signature()
.BackgroundColor("#fad980"))
Stroke Color
You can also change the stroke color of the Signature by using its Color
configuration.
@(Html.Kendo().Signature()
.Color("#fad980"))
Stroke Width
To update the stroke width of the Signature, utilize its StrokeWidth
configuration.
@(Html.Kendo().Signature()
.StrokeWidth(4))