MultimodalResultConverter Class
See Also  Members  
Xceed.Wpf.DataGrid Assembly > Xceed.Wpf.DataGrid.Converters Namespace : MultimodalResultConverter Class

Represents a converter that can be used to format the multimodal result of a Mode statistical function. This feature is available only in the Professional Edition

Syntax

Visual Basic (Declaration) 
<ValueConversionAttribute(SourceType=System.Object[], 
   TargetType=System.String, 
   ParameterType=)>
Public Class MultimodalResultConverter 
   Implements IValueConverter 
C# 
[ValueConversionAttribute(SourceType=System.Object[], 
   TargetType=System.String, 
   ParameterType=)]
public class MultimodalResultConverter : IValueConverter  

Remarks

By default, the result of a Mode statistical function will be unimodal. To enable multimodal results, the AllowMultimodal property must be set to true.

In the case where AllowMultimodal is set to true, a MultimodalResultConverter must be used to display the result, which will always be an array, even if the result is not multimodal. If false and a multimodal result occurs, only one of the mode will be returned. Ex. : [1, 2, 2, 6, 6] is bimodal (2 and 6) and the function will return either 2 or 6.

Inheritance Hierarchy

System.Object
   Xceed.Wpf.DataGrid.Converters.MultimodalResultConverter

Requirements

Supported Operating Systems: Windows Server 2003 Service Pack 1; Windows Vista; Windows XP Service Pack 2

See Also