Skip to main content
You are viewing help content for pre-release software. This document and the features it describes are subject to change.
All docs
V24.1

DxPolarChartScatterSeries<T, TArgument, TValue> Class

Defines a scatter series.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v24.1.dll

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

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