DxPolarChartScatterSeries<T, TArgument, TValue> Class
Defines a scatter series.
Namespace: DevExpress.Blazor
Assembly: DevExpress.Blazor.v24.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.
Declare a Scatter Series
- Use the Polar Chart’s Data property to specify a data source.
- Add a
<DxPolarChartScatterSeries>
tag to the component’s markup. - Assign data source fields that contain arguments and values for data points to ArgumentField and ValueField properties.
- 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:
<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
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