Skip to main content

LegendMarkerMode Enum

Lists values used to specify which marker type will be shown in the chart legend.

Namespace: DevExpress.XtraCharts

Assembly: DevExpress.XtraCharts.v24.2.dll

NuGet Package: DevExpress.Charts

#Declaration

[ResourceFinder(typeof(XtraChartsResFinder))]
public enum LegendMarkerMode

#Members

Name Description
Marker

Only markers are shown in the legend.

LegendMarkerMode_Markers

CheckBox

Only check boxes are shown in the legend.

LegendMarkerMode_CheckBoxes

CheckBoxAndMarker

Check boxes and markers are shown in the legend simultaneously (check boxes are positioned in front of markers).

LegendMarkerMode_CheckBoxesAndMarkers

MarkerAndCheckBox

Markers and check boxes are shown in the legend simultaneously (markers are positioned in front of check boxes).

LegendMarkerMode_MarkerAndCheckBoxes

None

No check boxes or markers are shown in the legend.

LegendMarkerMode_None

#Related API Members

The following properties accept/return LegendMarkerMode values:

Library Related API Members
Cross-Platform Class Library Legend.MarkerMode
WinForms Controls LegendModel.MarkerMode

#Remarks

The values listed by this enumeration can be used to set the Legend.MarkerMode property.

#Example

The example shows how to simultaneously display check boxes and markers in a legend.

To do this, set the Legend.MarkerMode property to the CheckBoxAndMarker (or MarkerAndCheckBox) mode. The LegendMarkerMode enumeration lists all the possible modes.

// Use the following line to display check boxes and markers for the default chart legend.
chartControl.Legend.MarkerMode = LegendMarkerMode.CheckBoxAndMarker;

// Use the following line to display check boxes and markers for an additional legend.
chartControl.Legends[legendIndex].MarkerMode = LegendMarkerMode.CheckBoxAndMarker;
See Also