Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
25
Transposed Grid
posted

Is there a Silverlight control that allows the presentation of transposed data?  Basically the rows and columns would be flipped in that rows are representing fields and columns are representing records.

Normally....

[Name]    [Age]    [Job Code]
Mike         31        1507
Tim          45        9999

Transposed...

[Name]             Mike           Tim
[Age]                 31               45
[Job Code]      1507           9999

It appears the WPF xamDataGrid has a ViewSettings.Orientation property that accomplishes this but I'm not aware if there is a Silverlight analog.