// (c) Copyright Microsoft Corporation.
// This source is subject to the Microsoft Public License (Ms-PL).
// Please see http://go.microsoft.com/fwlink/?LinkID=131993 for details.
// All other rights reserved.
namespace System.Windows.Controls.DataVisualization.Charting
{
///
/// Defines the selection behavior for a series.
///
public enum SeriesSelectionMode
{
///
/// Selection is disabled.
///
None,
///
/// The user can select only one item at a time.
///
Single,
///
/// The user can select multiple items without holding down a modifier key.
///
Multiple,
}
}