Back to Devexpress

DxPolarChartScatterSeries<T, TArgument, TValue> Class

blazor-devexpress-dot-blazor-dot-dxpolarchartscatterseries-3.md

latest3.7 KB
Original Source

DxPolarChartScatterSeries<T, TArgument, TValue> Class

Defines a scatter series.

Namespace : DevExpress.Blazor

Assembly : DevExpress.Blazor.v25.2.dll

NuGet Package : DevExpress.Blazor

Declaration

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

Type Parameters

NameDescription
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.

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:

razor
<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>

Implements

IComponent

IHandleEvent

IHandleAfterRender

IDisposable

IPolarChartSeries

IChartSeriesBase

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

DxPolarChartScatterSeries<T, TArgument, TValue> Members

DevExpress.Blazor Namespace