There is the possibility to upload data from a IEnumerable <IDictionary <string,object>> in FlatDataSource?
Or you can hide the properties of a class from being shown in PivotGrid?
Hello Alex,
You can use IEnumerable<IDictionary<string,object>> but I guess that will put you in a much complicated scenario than exposing your data using a simple business object type. If that is the way you prefer to go with I can try to prepare a small sample for you.
You can hide a property of class as two different approaches can be used:
1. Applying [DisplayAttribute(AutoGenerateField = false)] to your property.2. Setting DimensionMetadata.AutoGenerateField to false for specific property. You can look at this sample about how you can set such metadata for a property.
Regards.Plamen.