alexa
menu

Blazor

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

    Show / Hide Table of Contents

    Class PivotChartSeries

    Allow options to customize the chart series with different settings such as fill color, animation of the series, series width, border, visibility of the series, opacity, chart series types, marker, tooltip, trendlines, etc., in the pivot chart. For example, to display the line type pivot chart, set the property type to** Line**.

    Inheritance
    object
    ComponentBase
    OwningComponentBase
    SfOwningComponentBase
    PivotChartSeries
    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.OnParametersSet()
    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
    Namespace: Syncfusion.Blazor.PivotView
    Assembly: Syncfusion.Blazor.dll
    Syntax
    public class PivotChartSeries : SfOwningComponentBase, IComponent, IHandleEvent, IHandleAfterRender, IDisposable

    Constructors

    PivotChartSeries()

    Declaration
    public PivotChartSeries()

    Properties

    Animation

    Allows options to customizing animation for the series.

    Declaration
    [Parameter]
    public PivotChartSeriesAnimation Animation { get; set; }
    Property Value
    Type
    PivotChartSeriesAnimation

    Border

    Allows options to customizing the border of the series. This is applicable only for Column and Bar type series.

    Declaration
    [Parameter]
    public PivotChartSeriesBorder Border { get; set; }
    Property Value
    Type
    PivotChartSeriesBorder

    CardinalSplineTension

    Allows to set the tension of cardinal spline types.

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

    ColumnSpacing

    Allows to render the column series points with particular column spacing. It takes value from 0 - 1.

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

    ColumnWidth

    Allows to render the column series points with particular column width.

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

    CornerRadius

    Allows to render the column series points with particular rounded corner.

    Declaration
    [Parameter]
    public PivotChartCornerRadius CornerRadius { get; set; }
    Property Value
    Type
    PivotChartCornerRadius

    DashArray

    Allows to set the pattern of dashes and gaps to stroke the lines in Line type series.

    Declaration
    [Parameter]
    public string DashArray { get; set; }
    Property Value
    Type
    string

    DataLabel

    Allows options to customize data label for the pie, funnel, pyramid, doughnut chart series.

    Declaration
    [Parameter]
    public PivotChartDataLabel DataLabel { get; set; }
    Property Value
    Type
    PivotChartDataLabel

    DrawType

    Allows to set the type of series to be drawn in radar or polar series. They are 'Line' 'Column' 'Area' 'Scatter' 'Spline' 'StackingColumn' 'StackingArea' 'RangeColumn' 'SplineArea'.

    Declaration
    [Parameter]
    public PivotChartDrawType DrawType { get; set; }
    Property Value
    Type
    PivotChartDrawType

    EmptyPointSettings

    Allows options to customize the empty points in series.

    Declaration
    [Parameter]
    public PivotChartEmptyPointSettings EmptyPointSettings { get; set; }
    Property Value
    Type
    PivotChartEmptyPointSettings

    EnableTooltip

    If set true, the Tooltip for series will be visible.

    Declaration
    [Parameter]
    public bool EnableTooltip { get; set; }
    Property Value
    Type
    bool

    EndAngle

    Allows to set the end angle for the pie and doughnut chart series.

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

    ErrorBar

    Allows options for displaying and customizing error bar for individual point in a series.

    Declaration
    [Parameter]
    public PivotChartErrorSettings ErrorBar { get; set; }
    Property Value
    Type
    PivotChartErrorSettings

    Explode

    Allows to enable or disable series point explode on mouse click or touch for pie, funnel, doughnut and pyramid chart.

    Declaration
    [Parameter]
    public bool Explode { get; set; }
    Property Value
    Type
    bool

    ExplodeAll

    Allows to enable or disable all series point explode on mouse click or touch for pie, funnel, doughnut and pyramid chart.

    Declaration
    [Parameter]
    public bool ExplodeAll { get; set; }
    Property Value
    Type
    bool

    ExplodeIndex

    Allows to set Index of the point to be exploded on load for pie, funnel, doughnut and pyramid chart.

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

    ExplodeOffset

    Allows to set distance of the point from the center, which takes values in both pixels and percentage for pie, funnel, doughnut and pyramid chart.

    Declaration
    [Parameter]
    public string ExplodeOffset { get; set; }
    Property Value
    Type
    string

    Fill

    Allows to set the fill color for the series that accepts value in hex and rgba as a valid CSS color string.

    Declaration
    [Parameter]
    public string Fill { get; set; }
    Property Value
    Type
    string

    GapRatio

    Allows to set the distance between the segments of a funnel/pyramid series. The range will be from 0 to 1.

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

    GroupMode

    Allows to define the mode of grouping for pie, funnel, doughnut and pyramid chart series.

    Declaration
    [Parameter]
    public PivotChartGroupModes GroupMode { get; set; }
    Property Value
    Type
    PivotChartGroupModes

    GroupTo

    Allows to combine the y values into slice named other for pie, funnel, doughnut and pyramid chart Series.

    Declaration
    [Parameter]
    public string GroupTo { get; set; }
    Property Value
    Type
    string

    InnerRadius

    Allows to set inner radius for pie and funnel series chart.

    Declaration
    [Parameter]
    public string InnerRadius { get; set; }
    Property Value
    Type
    string

    IsClosed

    Specifies whether to join start and end point of a line/area series used in polar/radar chart to form a closed path.

    Declaration
    [Parameter]
    public bool IsClosed { get; set; }
    Property Value
    Type
    bool

    LegendShape

    Allows to set the shape of the legend. Each series has its own legend shape. They are, Circle Rectangle VerticalLine Pentagon InvertedTriangle SeriesType Triangle Diamond Cross HorizontalLine.

    Declaration
    [Parameter]
    public PivotChartLegendShape LegendShape { get; set; }
    Property Value
    Type
    PivotChartLegendShape

    Marker

    Allows options for displaying and customizing markers for individual points in a series.

    Declaration
    [Parameter]
    public PivotChartMarkerSettings Marker { get; set; }
    Property Value
    Type
    PivotChartMarkerSettings

    MaxRadius

    Allows to set the maximum radius.

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

    MinRadius

    Allows to set the minimum radius.

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

    NeckHeight

    Allows to defines the height of the funnel chart neck with respect to the chart area.

    Declaration
    [Parameter]
    public string NeckHeight { get; set; }
    Property Value
    Type
    string

    NeckWidth

    Allows to defines the width of the funnel chart neck with respect to the chart area.

    Declaration
    [Parameter]
    public string NeckWidth { get; set; }
    Property Value
    Type
    string

    Opacity

    Allows to set the opacity of the series.

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

    PyramidMode

    Defines how the values have to be reflected, whether through height/surface of the segments in pyramid series.

    Declaration
    [Parameter]
    public PivotChartPyramidModes PyramidMode { get; set; }
    Property Value
    Type
    PivotChartPyramidModes

    Radius

    Get or set the radius of the pie series as a percentage in the pivot chart.

    Declaration
    [Parameter]
    public string Radius { get; set; }
    Property Value
    Type Description
    string

    A string representing the radius value. The value should be provided as a percentage.

    Remarks

    The radius of the pie series will be set to 80% of its size by default.

    SegmentAxis

    Allows to set the axis, based on which the line series will be split.

    Declaration
    [Parameter]
    public object SegmentAxis { get; set; }
    Property Value
    Type
    object

    Segments

    Allows to set the collection of regions that helps to differentiate a line series.

    Declaration
    [Parameter]
    public List<PivotChartSegment> Segments { get; set; }
    Property Value
    Type
    List<PivotChartSegment>

    SelectionStyle

    Allows to set the custom style for the selected series or points.

    Declaration
    [Parameter]
    public string SelectionStyle { get; set; }
    Property Value
    Type
    string

    SplineType

    Allows to set the type of spline to be rendered.

    Declaration
    [Parameter]
    public PivotChartSplineType SplineType { get; set; }
    Property Value
    Type
    PivotChartSplineType

    StackingGroup

    This allows grouping the chart series in Stacked column / bar charts. Any string value can be provided to the stackingGroup property. If any two or above series have the same value, those series will be grouped together.

    Declaration
    [Parameter]
    public string StackingGroup { get; set; }
    Property Value
    Type
    string

    StartAngle

    Allows to defines start angle for the pie, funnel, doughnut and pyramid chart series.

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

    TooltipMappingName

    Allows to set the provided value will be considered as a Tooltip name.

    Declaration
    [Parameter]
    public string TooltipMappingName { get; set; }
    Property Value
    Type
    string

    Trendlines

    Allows to set the collection of trendlines that are used to predict the trend.

    Declaration
    [Parameter]
    public List<PivotChartTrendline> Trendlines { get; set; }
    Property Value
    Type
    List<PivotChartTrendline>

    Type

    Allows to set the type of the series are StackingColumn StackingArea StackingBar StepLine Line Column Area Bar StepArea Pareto Bubble Scatter Spline SplineArea StackingColumn100 StackingBar100 StackingArea100 Polar Radar.

    Declaration
    [Parameter]
    [JsonConverter(typeof(JsonStringEnumConverter))]
    public ChartSeriesType Type { get; set; }
    Property Value
    Type
    ChartSeriesType

    TypeChanged

    Gets or sets a callback of the bound value.

    Declaration
    [Parameter]
    public EventCallback<ChartSeriesType> TypeChanged { get; set; }
    Property Value
    Type
    EventCallback<ChartSeriesType>

    Visible

    Allows to set the visibility of series.

    Declaration
    [Parameter]
    public bool Visible { get; set; }
    Property Value
    Type
    bool

    Width

    Allows to set the stroke width for the series that is applicable only for Line type series.

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

    Methods

    BuildRenderTree(RenderTreeBuilder)

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

    Dispose(bool)

    Dispose unmanaged resources in the component.

    Declaration
    protected override void Dispose(bool disposing)
    Parameters
    Type Name Description
    bool disposing
    Overrides
    OwningComponentBase.Dispose(bool)

    OnInitializedAsync()

    Method invoked when the component is ready to start, having received its initial parameters from its parent in the render tree. Override this method if you will perform an asynchronous operation and want the component to refresh when that operation is completed.

    Declaration
    protected override Task OnInitializedAsync()
    Returns
    Type Description
    Task

    A System.Threading.Tasks.Task representing any asynchronous operation.

    Overrides
    ComponentBase.OnInitializedAsync()

    OnParametersSetAsync()

    Method invoked when the component has received parameters from its parent in the render tree, and the incoming values have been assigned to properties.

    Declaration
    protected override Task OnParametersSetAsync()
    Returns
    Type Description
    Task

    A System.Threading.Tasks.Task representing any asynchronous operation.

    Overrides
    ComponentBase.OnParametersSetAsync()

    Implements

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