PointSeries
Represents a Cartesian series that renders each data point as an individual marker positioned by its horizontal and vertical values, without connecting points with lines. Use this series type to visualize the correlation or distribution of two numeric values across a set of data points.
Definition
Namespace:Telerik.Maui.Controls.Charts
Assembly:Telerik.Maui.Controls.dll
Syntax:
public sealed class PointSeries : CartesianSeries
Inheritance: objectChartSeriesCartesianSeriesPointSeries
Inherited Members
Constructors
public PointSeries()
Fields
FillProperty
BindableProperty
Identifies the Fill bindable property.
public static readonly BindableProperty FillProperty
PointSizeProperty
BindableProperty
Identifies the PointSize bindable property.
public static readonly BindableProperty PointSizeProperty
Properties
Fill
Brush
Gets or sets the fill brush used to paint each scatter point marker. null resolves the color from the chart palette for this series.
public Brush? Fill { get; set; }
Gets or sets the diameter of each scatter point marker in device-independent pixels (logical units). The default value of NaN lets the chart engine use its built-in default size. Set an explicit positive value to override the size; the chart automatically scales the value to physical pixels using the device density so the visual size remains consistent across displays.
public double PointSize { get; set; }