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

ChartPointSymbol Enum

Lists marker kinds for line and scatter series.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v24.1.dll

Declaration

public enum ChartPointSymbol

Members

Name Description
Circle

Displays point markers as circles.

Square

Displays point markers as squares.

Polygon

Displays point markers as polygons.

TriangleDown

Displays point markers as inverted triangles.

TriangleUp

Displays point markers as triangles.

Cross

Displays point markers as crosses.

Related API Members

The following properties accept/return ChartPointSymbol values:

Remarks

The example below demonstrates how to specify the DxChartSeriesPoint.Symbol property.

<DxChartLineSeries Name="2015" Filter="@((SaleInfo s) => s.Date.Year == 2015)" SummaryMethod="Enumerable.Sum" 
                      ArgumentField="@(s => s.City)" ValueField="@(s => s.Amount)">
    <DxChartSeriesPoint Symbol="ChartPointSymbol.Square"></DxChartSeriesPoint>
</DxChartLineSeries>

The following image shows the results:

Point symbol - Square

See Also