officefileapi-devexpress-dot-spreadsheet-dot-charts-dot-series-eed7c419.md
Obtains specific settings of data markers displayed by series on the line, scatter or radar chart.
Namespace : DevExpress.Spreadsheet.Charts
Assembly : DevExpress.Spreadsheet.v25.2.Core.dll
NuGet Package : DevExpress.Spreadsheet.Core
Marker Marker { get; }
ReadOnly Property Marker As Marker
| Type | Description |
|---|---|
| Marker |
A Marker object that contains the specific marker settings.
|
The Marker property retrieves settings which define how data markers are displayed. You can change the size (Marker.Size) and shape (Marker.Symbol) of markers used to indicate each data point in the series.
The example below demonstrates how to create a line chart with custom data markers. To access the Marker object, use the Series.Marker property, and then specify the shape (Marker.Symbol) and size (Marker.Size) of markers displayed at each data point in the series.
Worksheet worksheet = workbook.Worksheets["chartTask5"];
workbook.Worksheets.ActiveWorksheet = worksheet;
// Create a chart and specify its location.
Chart chart = worksheet.Charts.Add(ChartType.Line, worksheet["B2:C8"]);
chart.TopLeftCell = worksheet.Cells["F2"];
chart.BottomRightCell = worksheet.Cells["L15"];
// Display markers and specify the marker style and size.
chart.Series[0].Marker.Symbol = MarkerStyle.Circle;
chart.Series[0].Marker.Size = 15;
// Hide the legend.
chart.Legend.Visible = false;
Dim worksheet As Worksheet = workbook.Worksheets("chartTask5")
workbook.Worksheets.ActiveWorksheet = worksheet
' Create a chart and specify its location.
Dim chart As Chart = worksheet.Charts.Add(ChartType.Line, worksheet("B2:C8"))
chart.TopLeftCell = worksheet.Cells("F2")
chart.BottomRightCell = worksheet.Cells("L15")
' Display markers and specify the marker style and size.
chart.Series(0).Marker.Symbol = MarkerStyle.Circle
chart.Series(0).Marker.Size = 15
' Hide the legend.
chart.Legend.Visible = False
See Also