Skip to main content
All docs
V24.2

DxSankeyLinkSettings.Color Property

Specifies the link color.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v24.2.dll

NuGet Package: DevExpress.Blazor

Declaration

[DefaultValue("#000000")]
[Parameter]
public string Color { get; set; }

Property Value

Type Default Description
String "#000000"

The link color.

Remarks

The Color property accepts the following formats:

  • Longhand and shorthand hexadecimal color values: #ffff00, #ff0.
  • RGB and RGBA color codes: rgb(255, 0, 0), rgba(0, 230, 0, 0.3).
  • HTML color name (case-insensitive): red, DarkGreen.

Refer to the DxSankeyLinkSettings class description for more information and an example.

See Also