Skip to main content

VectorMapBackgroundBuilder.BorderColor(JS) Method

Specifies a color for the background border. Mirrors the client-side borderColor option.

Namespace: DevExtreme.AspNet.Mvc.Builders

Assembly: DevExtreme.AspNet.Core.dll

Declaration

public VectorMapBackgroundBuilder BorderColor(
    JS value
)

Parameters

Name Type Description
value JS

A JavaScript expression that specifies the option value.

Returns

Type Description
VectorMapBackgroundBuilder

A reference to this instance after the method is called.

Remarks

Use the new JS() expression to set the option’s value.

<script>
    var myValue = ...;
</script>

@(Html.DevExtreme().VectorMap()
    .Background(background => background
        .BorderColor(new JS("myValue"))
    )
)
See Also