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
150
How to plot multiple Lines dynamically while keeping X Axis and Y Axis static across the Lines
posted

Hello,

I have ObservableCollection<Car> as data. Each Car model is having Make, Model, Price & ManufacturingDate as properties.

Here I have to GroupBy Make property and for each resulting collection, I want to create a Line on my chart with ManufacturingDate on X Axis and Price on Y Axis.

So each line will display all models of a car maker with Price and ManufacturingDate.

All Lines should be visible at same time with X Axis labels and Y Axis labels appropriately.