Is there a way to make a segmented bar graph with linq? I saw several examples where you can count the number of events of a particular object. Is it possible to create a linq based historical schema that counts the number of events in a series of objects between two values?
I don’t know how you would group by a number of objects to create the necessary buckets for the histogram? Suppose you use the starting border and width to create a range.
You will need to iterate over an array of numbers and group each number, be it <= Upper bound and> Lower bound. Then you just summarize each group. I do not know how to complete a group in parts
source
share