Draw multiple series #1741
Replies: 3 comments
-
Hello, it seems that the stacked area sample is what you need: https://livecharts.dev/docs/WPF/2.0.0-rc4/samples.stackedArea.basic Is that enough? |
Beta Was this translation helpful? Give feedback.
-
I will close this for now, since this seems to be a question and not an issue with the library, please feel free to reply in the generated discussion, I will help you there. |
Beta Was this translation helpful? Give feedback.
-
Thanks, dear @beto-rodriguez for your response I want to draw these series on top of each other(vertically), after drawing the first, the second chart should start from the highest value in the first item which is 8 in this case, and so on. Any help would be appreciated. |
Beta Was this translation helpful? Give feedback.
-
Hi guys
I'm using Livecharts(wpf) to draw a CartesianChart with more than 10 LineSeries.
I have to draw all of the series vertically on top of each other vertically, I read all the samples and documentation in your repository but could not find the right solution.
There was a Mapping property that was the closet option I guess,
this is the way I used it:
Mapping = (logPoint, index) => new(logPoint.X, logPoint.Y + 100 ),
However, when hovering over the chart, the values are the sum of Y and 100.
I want to see the original value not the mapped one.
How can I achieve this goal???
I attached the output to this issue.
Beta Was this translation helpful? Give feedback.
All reactions