How can I supress blank rows and/or blank columns in a XamPivotGrid ?
Hi
This issue is fixed in last SR. Please contact with DS division to find out how you can download it.
RegardsTodor
I have Version 10.3 and still displays blank rows...??
If you tell me which version is your XamPivotGrid.dll, I will tell you if it SR or not
10.3.20103.1006
Latest: 10.3.20103.2159
This is last ServiceRelease.
Do you continue having same issue? If yes, could describe what the problem is and if it is possible please attach a screenshot
I've updated to the latest SR and am enjoying the fact blank rows are now suppressed. However my display formats are no longer working.
Here's an example of how I am adding them:
new DimensionMetadata { DisplayName = "Units", SourcePropertyName = "Units", DisplayFormat = "{0:n}" }
Why would this be affected?
Hello,
I have logged this with development under ID: 78353 and I have also created a support ticket on your behalf: CAS-66871-RH6FVQ and have linked the development issue to it, so that you can get automatically updated, when a Feature Release containing the fix is available for download. You can get the new version from our website’s “My IG”, “My Keys & Downloads” tags: https://ko.infragistics.com/Membership/Default.aspx?panel=Downloads#Downloads
You can also monitor the support ticket’s progress through the “My Support Activity” tag: https://ko.infragistics.com/Membership/MySupport.aspx
You are right and I confirm that it's a bug into the SR. If you have control over the data type class you can decorate Units property with DisplayFormatAttribute:
[DisplayFormat(DataFormatString = "{0:####} pcs.")]
public int Units
{
get;
set;
}
If you don’t have access to the class definition please contact the developer support team in order to request a private build.
Thank you for your feedback.PPilev.