Draw multiple series #1741
Replies: 3 comments 3 replies
-
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.
![Clipboard - November 24, 2024 3_58 PM](https://private-user-images.githubusercontent.com/34238762/389279708-002f55eb-427d-479e-ad18-51ed6b8b2415.png?jwt=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3Mzg5Nzk2MDcsIm5iZiI6MTczODk3OTMwNywicGF0aCI6Ii8zNDIzODc2Mi8zODkyNzk3MDgtMDAyZjU1ZWItNDI3ZC00NzllLWFkMTgtNTFlZDZiOGIyNDE1LnBuZz9YLUFtei1BbGdvcml0aG09QVdTNC1ITUFDLVNIQTI1NiZYLUFtei1DcmVkZW50aWFsPUFLSUFWQ09EWUxTQTUzUFFLNFpBJTJGMjAyNTAyMDglMkZ1cy1lYXN0LTElMkZzMyUyRmF3czRfcmVxdWVzdCZYLUFtei1EYXRlPTIwMjUwMjA4VDAxNDgyN1omWC1BbXotRXhwaXJlcz0zMDAmWC1BbXotU2lnbmF0dXJlPTZmOWJmZmIyMzE1NGMzMDlhMDU4ZjgwZTU3ZmNkMGZmMzE3NmQ0MGQwMTU2NDQzZWQxZWEyYzI2MTRkYmYyMGImWC1BbXotU2lnbmVkSGVhZGVycz1ob3N0In0.spJCeLY4ZNyPth-qAWIMO3NGg5LqEeJucTE52rIHtD0)
Beta Was this translation helpful? Give feedback.
All reactions