IsHidden with MultiBinding or IMultiValueConverter

HI How to Pass multi value to converter for Hide column? conditionally hidden column. I have a collection in viewmodel and I want the name of the column in collection to be searched and based on this search, my column will be hidden

Column MappingName As parameter1 and Collection As parameter2: ObservableCollection




<syncfusion:GridNumericColumn NumberDecimalDigits="0" Width="40" HeaderText="press" MappingName="S1.Pressure" >

                                    <syncfusion:GridNumericColumn.IsHidden>

                                        <MultiBinding Converter="{StaticResource HiddenColumnConverter}">


                                          parameter1: S1.Pressure

                                          parameter2: ObservableCollection<MyModel>


                                        </MultiBinding>

                                    </syncfusion:GridNumericColumn.IsHidden>

</syncfusion:GridNumericColumn>



Loader.
Up arrow icon