Welcome to the .NET MAUI feedback portal. We’re happy you’re here! If you have feedback on how to improve the .NET MAUI, we’d love to hear it!

  • Check out the features or bugs others have reported and vote on your favorites. Feedback will be prioritized based on popularity.
  • If you have feedback that’s not listed yet, submit your own.

Thanks for joining our community and helping improve Syncfusion products!

1
Vote

I would like to use my item properties in a groupdescriptor. Or like in Devexpress, give a tag object which I could use for my groupdescriptors. That would retain the Key property by which everything is grouped. Right now I could put Key as object and then put Binding Key.Color to get the color property and Key.Name to get

the Name but not all my groupdescriptors are objects with these specific properties, so it is not ideal for me.

For example, this one artist is a male group which is a blue group. When I group by artistname I would like to give the group a color by its binding property e.g. groupcolor. 


Right now GroupResults only has Items, Count, Key and IsExpand. But it would be nice to also have a groupindex so I could do BackgroundColor: "{ Binding Items[groupindex].color}" or something like that. 

I think converters are very confusing and summing up some value like in the documentation does not help me.