Version

ChartHitTestMode Enumeration

Describes available behaviors for performing hit testing in the chart/map.
Syntax
'Declaration
 
Public Enum ChartHitTestMode 
   Inherits System.Enum
public enum ChartHitTestMode : System.Enum 
Members
MemberDescription
AutoAutomatically decide the appropriate hit test mode for the content.
ColorEncodedUse a color encoded off screen buffer for hit testing. This can have extremely rare false positives where the wrong series is hit (this is due to our inability to disable anti-aliasing in our color buffer), but should always be O(1) time for determining a hit series. This increases frame render time, however. Consider using this if hit testing time is degrading performance.
ComputationalUse a computational based approach to determine which series has been hit. This uses loose bounding boxes, in some cases, and can range in time complexity between O(1) and O(log n) to find a hit. This decreases frame render time compared to color encoded.
MixedLet each series decide which hit testing mode to use individually based on their own hit test mode.
MixedFavoringComputationalLet each series decide which hit testing mode to use individually based on their own hit test mode, but evaluate all computational hits before evaluating any color encoding hits.
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also