Hi
1) Is it possible to change "measure" label? (see screenshot below)
2) Is it possible to hide some of dimensions (for example "City")?
Hello,
I suppose this question is about FlatDataSource. You can set DisplayAttribute for the properties of your data class:
[DisplayAttribute(Name = "MyFriendlyName", AutoGenerateField = false)]
public string City
{
get;
set;
}
Please note that with current implementation setting AutoGenerateField = false will hide the item from both measures and dimensions.
Regards.
Plamen.
Yes, I use FlatDataSource created in c#. Is it possible to do this without modifying model classes?