alexa
menu

Blazor

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

    Show / Hide Table of Contents

    Class AccumulationChartLegendPageSettings

    The option to customize the paging elements for arrow size and font styles for the paging number texts.

    Inheritance
    object
    ComponentBase
    OwningComponentBase
    SfOwningComponentBase
    SfBaseComponent
    AccumulationChartLegendPageSettings
    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.OnInitialized()
    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.IsDisposed
    OwningComponentBase.ScopedServices
    SfBaseComponent.Dispose()
    SfBaseComponent.Dispose(bool)
    SfBaseComponent.GetEffectivePlatform()
    SfBaseComponent.GetMainComponentPlatform()
    SfBaseComponent.IsMainLicenseComponent()
    SfBaseComponent.LicenseContext
    SfBaseComponent.OnAfterRenderAsync(bool)
    SfBaseComponent.OnInitializedAsync()
    SfBaseComponent.OnObservableChange(string, object, bool, NotifyCollectionChangedEventArgs)
    SfBaseComponent.ValidateLicense()
    Namespace: Syncfusion.Blazor.Charts
    Assembly: Syncfusion.Blazor.dll
    Syntax
    public class AccumulationChartLegendPageSettings : SfBaseComponent, IComponent, IHandleEvent, IHandleAfterRender, IDisposable

    Constructors

    AccumulationChartLegendPageSettings()

    Declaration
    public AccumulationChartLegendPageSettings()

    Properties

    ArrowSize

    Gets and sets the size of the legend paging arrows in the SfAccumulationChart.

    Declaration
    [Parameter]
    public double ArrowSize { get; set; }
    Property Value
    Type Description
    double

    Accepts a double value that specifies the size of the legend paging arrow. The default value is 8.

    Remarks

    The ArrowSize property allows you to customize the size of the paging arrows in the chart legend.

    Examples
    // The following code snippet demonstrates how to set the size of the legend paging arrows in an accumulation chart:
    <SfAccumulationChart>
        <AccumulationChartSeriesCollection>
            <AccumulationChartSeries DataSource="@StatisticsDetails" XName="Browser" YName="Users"></AccumulationChartSeries>
        </AccumulationChartSeriesCollection>
        <AccumulationChartLegendSettings Visible="true">
            <AccumulationChartLegendPageSettings ArrowSize="10"></AccumulationChartLegendPageSettings>
        </AccumulationChartLegendSettings>
    </SfAccumulationChart>

    TextStyle

    Gets or sets an instance of AccumulationChartLegendPageSettingsTextStyle which specifies the font styles for the paging text in the legend.

    Declaration
    [Parameter]
    public AccumulationChartLegendPageSettingsTextStyle TextStyle { get; set; }
    Property Value
    Type Description
    AccumulationChartLegendPageSettingsTextStyle

    The default value is an instance of AccumulationChartLegendPageSettingsTextStyle, allowing customization of font styles for legend paging text.

    Remarks

    The AccumulationChartLegendPageSettingsTextStyle class provides options to customize the font styles of the paging text.

    Examples
    // The following code snippet demonstrates how to customize the legend paging text styles in an accumulation chart:
    <SfAccumulationChart>
        <AccumulationChartSeriesCollection>
            <AccumulationChartSeries DataSource="@StatisticsDetails" XName="Browser" YName="Users"></AccumulationChartSeries>
        </AccumulationChartSeriesCollection>
        <AccumulationChartLegendSettings Visible="true">
            <AccumulationChartLegendPageSettings ArrowSize="10">
                <AccumulationChartLegendPageSettingsTextStyle Size="16px" FontFamily="Arial" FontWeight="600" FontStyle="bold" Color="blue" Opacity=0.5></AccumulationChartLegendPageSettingsTextStyle>
            </AccumulationChartLegendPageSettings>
        </AccumulationChartLegendSettings>
    </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