alexa
menu

Blazor

  • Code Examples
  • Upgrade Guide
  • User Guide
  • Demos
  • Support
  • Forums
  • Download
Search Results for

    Show / Hide Table of Contents

    Class AccumulationChartSeriesBorder

    Gets and sets the border configuration for the series.

    Inheritance
    object
    ComponentBase
    OwningComponentBase
    SfOwningComponentBase
    ChartCommonBorder
    AccumulationChartSeriesBorder
    Implements
    IComponent
    IHandleEvent
    IHandleAfterRender
    IDisposable
    Inherited Members
    ComponentBase.Assets
    ComponentBase.AssignedRenderMode
    ComponentBase.DispatchExceptionAsync(Exception)
    ComponentBase.InvokeAsync(Action)
    ComponentBase.InvokeAsync(Func<Task>)
    ComponentBase.OnAfterRender(bool)
    ComponentBase.OnAfterRenderAsync(bool)
    ComponentBase.OnInitialized()
    ComponentBase.OnInitializedAsync()
    ComponentBase.OnParametersSet()
    ComponentBase.OnParametersSetAsync()
    ComponentBase.RendererInfo
    ComponentBase.SetParametersAsync(ParameterView)
    ComponentBase.ShouldRender()
    ComponentBase.StateHasChanged()
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    object.ToString()
    OwningComponentBase.Dispose(bool)
    OwningComponentBase.IsDisposed
    OwningComponentBase.ScopedServices
    Namespace: Syncfusion.Blazor.Charts
    Assembly: Syncfusion.Blazor.dll
    Syntax
    public class AccumulationChartSeriesBorder : ChartCommonBorder, IComponent, IHandleEvent, IHandleAfterRender, IDisposable

    Constructors

    AccumulationChartSeriesBorder()

    Declaration
    public AccumulationChartSeriesBorder()

    Properties

    Color

    Gets or sets the border color for the series in the accumulation chart.

    Declaration
    public override string Color { get; set; }
    Property Value
    Type Description
    string

    A string value representing the color of the series border. The color can be specified in named, hexadecimal, or RGB format.

    Overrides
    ChartCommonBorder.Color
    Remarks

    It is important to note that setting a negative width is invalid and will result in an error.

    Examples
    // In the following example, the series border color is set to red:
    <SfAccumulationChart>
        <AccumulationChartSeriesCollection>
            <AccumulationChartSeries DataSource="@StatisticsDetails" XName="Browser" YName="Users">
                <AccumulationChartSeriesBorder Color="red" Width="2"></AccumulationChartSeriesBorder>
            </AccumulationChartSeries>
        </AccumulationChartSeriesCollection>
    </SfAccumulationChart>

    Width

    Gets or sets the border width for the series in the accumulation chart.

    Declaration
    public override double Width { get; set; }
    Property Value
    Type Description
    double

    A double representing the width of the series border. The default value is 1.

    Overrides
    ChartCommonBorder.Width
    Remarks

    The border width is prominently visible when a border color is specified. When no color is applied to the border, setting a width will have no visible effect.

    Examples
    // In the following example, the series border width is set to 2:
    <SfAccumulationChart>
        <AccumulationChartSeriesCollection>
            <AccumulationChartSeries DataSource="@StatisticsDetails" XName="Browser" YName="Users">
                <AccumulationChartSeriesBorder Width="2" Color="blue"></AccumulationChartSeriesBorder>
            </AccumulationChartSeries>
        </AccumulationChartSeriesCollection>
    </SfAccumulationChart>

    Methods

    BuildRenderTree(RenderTreeBuilder)

    Declaration
    protected override void BuildRenderTree(RenderTreeBuilder __builder)
    Parameters
    Type Name Description
    RenderTreeBuilder __builder
    Overrides
    ComponentBase.BuildRenderTree(RenderTreeBuilder)

    Implements

    IComponent
    IHandleEvent
    IHandleAfterRender
    IDisposable
    In this article
    Back to top Generated by DocFX
    Copyright © 2001 - 2025 Syncfusion Inc. All Rights Reserved