PointMarkers: {
    None: typeof EmptyPointMarker;
    UICircle: typeof UICircle;
    UIDiamond: typeof UIDiamond;
    UIRectangle: typeof UIRectangle;
} = ...

Collection of available PointMarker implementations.

PointMarkers are interactable UIElements that belong to AutoCursors and Markers, indicating their location.

PointMarker can be specified when creating an AutoCursor or Marker, by method of their builder.

Example usage:

// Create SeriesMarkerXY with specified PointMarker
SeriesXY.addMarker(MarkerBuilders.XY.setPointMarker(PointMarkers.UICircle))
// Specify PointMarker of AutoCursor
LightningChart.ChartXY({ autoCursorBuilder: AutoCursorBuilders.XY.setPointMarker(PointMarkers.UIDiamond) })

Type declaration