Skip to main content
All docs
V25.1
  • DxChartAnnotationBase<T>.Color Property

    Specifies the annotation color.

    Namespace: DevExpress.Blazor

    Assembly: DevExpress.Blazor.v25.1.dll

    NuGet Package: DevExpress.Blazor

    Declaration

    [Parameter]
    public string Color { get; set; }

    Property Value

    Type Description
    String

    The annotation 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.

    The following example sets the image annotation color to transparent:

    <DxChart Data="@DataSource">
        @* ... *@
        <DxChartLineSeries ValueField="@((ApplePrice i) => i.Close)"
                           ArgumentField="@((ApplePrice i) => i.Date)"
                           Name="AAPL" />
        <DxChartAnnotation PositionX="150"
                           PositionY="150"
                           Type="ChartAnnotationType.Image"
                           Color="transparent"
                           PaddingLeftRight="0"
                           PaddingTopBottom="0">
            <DxChartAnnotationImage Url="@StaticAssetUtils.GetImagePath("AppleStock/stock.svg")"
                                    Width="60"
                                    Height="60" />
            <DxChartAnnotationBorder Visible="false" />
        </DxChartAnnotation>
    </DxChart>
    

    Chart - Image annotation

    Refer to the following section for more information about annotations: Annotations in Blazor Charts.

    See Also