// (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 { /// /// Describes the state a data point is in. /// public enum DataPointState { /// /// Data point has been created. /// Created, /// /// Data point is in the process of being revealed. /// Showing, /// /// Data point is visible in the plot area. /// Normal, /// /// Data point is in the process of being removed from the plot area. /// PendingRemoval, /// /// Data point is in the process of being hidden. /// Hiding, /// /// Data point is hidden. /// Hidden, } }