Hello Syncfusion,
I would like to change default name of Category in PropertyGrid with EnableGrouping = True from "Misc" to something else dynamically defined.
For example for class
Person
{
[Category("A")]
public bool PropertyA {get;set;}
[Category("B")]
public bool PropertyB {get;set;}
//missing category attribute
public bool PropertyC {get;set;}
}
Where PropertyC will not be in category Misc, but in something else.
Thanks