(sorry for my bad english)
With a List<T> where T is:
how can I create a chart like the image attached?
Looking on the sample it is clear that if I create 2 collections, one returning Product/Quantity and another returning Product/Reserved, I can accomplish that. But is it possible with only one collection with all the data?
With a List<T> where T is:
class Data{ public string Product { get; set; } public decimal Quantity { get; set; } public decimal Reserved { get; set; }}how can I create a chart like the image attached?
Looking on the sample it is clear that if I create 2 collections, one returning Product/Quantity and another returning Product/Reserved, I can accomplish that. But is it possible with only one collection with all the data?