blazor-devexpress-dot-blazor-dot-dxpolarchartscatterseries-3.md
Defines a scatter series.
Namespace : DevExpress.Blazor
Assembly : DevExpress.Blazor.v25.2.dll
NuGet Package : DevExpress.Blazor
public class DxPolarChartScatterSeries<T, TArgument, TValue> :
DxPolarChartBaseSeries<T, TArgument, TValue>
| Name | Description |
|---|---|
| T |
The data type.
| | TArgument |
The series argument type.
| | TValue |
The series value type.
|
A scatter series displays data as a collection of points.
Run Demo: Polar and Radar - Discrete Data
<DxPolarChartScatterSeries> tag to the component’s markup.You can add the following child components to an area series:
The following code snippet declares these objects in the markup:
<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>
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