Skip to main content
All docs
V25.1
  • DxPolarChartScatterSeries<T, TArgument, TValue> Class

    Defines a scatter series.

    Namespace: DevExpress.Blazor

    Assembly: DevExpress.Blazor.v25.1.dll

    NuGet Package: DevExpress.Blazor

    Declaration

    public class DxPolarChartScatterSeries<T, TArgument, TValue> :
        DxPolarChartBaseSeries<T, TArgument, TValue>

    Type Parameters

    Name Description
    T

    The data type.

    TArgument

    The series argument type.

    TValue

    The series value type.

    Remarks

    A scatter series displays data as a collection of points.

    Scatter Series Overview

    Run Demo: Polar and Radar - Discrete Data

    Declare a Scatter Series

    1. Use the Polar Chart’s Data property to specify a data source.
    2. Add a <DxPolarChartScatterSeries> tag to the component’s markup.
    3. Assign data source fields that contain arguments and values for data points to ArgumentField and ValueField properties.
    4. Optional. Configure the series (see the section below).

    Nested Component Structure

    You can add the following child components to an area series:

    The following code snippet declares these objects in the markup:

    Nested object - Scatter Series

    <DxPolarChart Data=@DataSource>
        <DxPolarChartScatterSeries ArgumentField="@((DiscretePoint i) => i.Arg)"
                                   ValueField="@((DiscretePoint i) => i.Day)">
            <DxChartSeriesLabel FormatPattern="{value:##.#}" />
            <DxChartSeriesLegendItem Text="Daily Distribution" />
            <DxChartSeriesPoint Size="5" />
        </DxPolarChartScatterSeries>
        <DxChartLegend Visible="true" Position="RelativePosition.Outside" />
    </DxPolarChart>
    

    Inheritance

    Object
    ComponentBase
    DxSettingsComponent<DevExpress.Blazor.Internal.IPolarChartSeriesModel>
    DxComplexSettingsComponent<DxPolarChartBaseSeries<T, TArgument, TValue>, DevExpress.Blazor.Internal.IPolarChartSeriesModel>
    DxPolarChartBaseSeries<T, TArgument, TValue>
    DxPolarChartScatterSeries<T, TArgument, TValue>
    See Also