I always see CategoricalAxis being used on the X-Axis, however, I would like to plot multiple series based on Categories on the Y-Axis and have DateTime on the X-Axis.
How would I go about plotting:
var points = new ObservaleCollection<MyPoint>()
{
(new MyPoint(){ Category = "ID1", Time = now }),
(new MyPoint(){ Category = "ID2", Time = now }),
(new MyPoint(){ Category = "ID3", Time = now + 1 }),
(new MyPoint(){ Category = "ID1", Time = now + 1 }),
(new MyPoint(){ Category = "ID2", Time = now + 2 }),
etc, etc
};
I attached an image that shows what I'm trying to accomplish.