This question is locked. New answers and comments are not allowed.
Hi @ll,
Is there a way to show the mvc grid in horizontaly orientation?
I have a ViewModel like:
i want to show this properties as Rows and the Results as Columns Like:
Month: 1 2 3 4 ...
Year: 2011 2011 2011 2011 ...
SupplierName: Test1 Test Test3 Test4 ...
....
Greats.
Oliver
Is there a way to show the mvc grid in horizontaly orientation?
I have a ViewModel like:
public class DtoMonthlyStatistics { public int Year { get; set; } public int Month { get; set; } public int SupplierID { get; set; } public string SupplierName { get; set; } public decimal TotalRevenue { get; set; } public int TotalOrderCount { get; set; } public decimal AverageOrderValue { get; set; }
public int TotalPositionCount { get; set; } public decimal AveragePositionCount { get; set; } }i want to show this properties as Rows and the Results as Columns Like:
Month: 1 2 3 4 ...
Year: 2011 2011 2011 2011 ...
SupplierName: Test1 Test Test3 Test4 ...
....
Greats.
Oliver