series = new SplineSeries();
series.MarkerType = MarkerType.Triangle;
In the UltraDataChart™ control, most of the Series provide support for various markers. The appearance of markers is managed through the properties of the Chart Series that inherit from MarkerSeries class.
The following table lists all marker appearance properties: MarkerSeries object
The code snippets below demonstrate how to change the marker type in the SplineSeries object. The same logic can be applied to other series that inherit from the MarkerSeries class.
In C#:
series = new SplineSeries();
series.MarkerType = MarkerType.Triangle;
In Visual Basic:
Dim series As New SplineSeries() series.MarkerType = MarkerType.Triangle
Figure 1: The UltraDataChart control with SplineSeries and Triangle markers.