Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

ChartPointSymbol Enum

Lists marker kinds for line and scatter series.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v24.2.dll

NuGet Package: DevExpress.Blazor

#Declaration

C#
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 following code snippet specifies the DxChartSeriesPoint.Symbol property.

Razor
<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