Good morning,
why does Pivot Grid not consider the property [DisplayName("")] (from System.ComponentModel.DataAnnotations ) set in properties?
For example:
[DisplayName("Produkt Kontraktowy")]
public decimal ProductName { get; set; }
Unfortunately, the display name must be set in the pivot Grid itself. However, it does not take it into account, for example, when displaying a list of fields in PivotSchemaDesigner it's showing ProductName insted "Produkt Kontraktowy". I have to change name of the properites to
public decimal Produkt_Kontraktowy { get; set; } to get what i want.
In English, this may not be a problem, but if you write the code in English, but display the names of the user-specific fields in the native language, it is already a huge problem.