-
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 4 replies
-
|
Hi @gigios, thanks for your interesting question! Signal plots are extremely performant, but they are entirely optimized for horizontal plotting, making this task a challenging one! It may be possible to refactor signal plots to also support vertical rendering, but this may be a lot of work and may not happen for some time. I'm opening an issue #1194 to explore this idea further. You could definitely achieve this with 10 controls all showing a scatter plot. It would be a little slow, but perhaps not too slow for your application. How quickly does the data change? Does it have to be mouse-interactive? It may be worth trying to assess what the performance is to see if it can meet your needs already. Alternatively you could create 10 horizontal charts. Even if this isn't your ultimate goal, you could do this to confirm this library and signal plots meet your needs. When vertical scatter plots are supported, you'll be ready! |
Beta Was this translation helpful? Give feedback.
-
|
Hi @swharden, thanks for the answer. In theory the additional data will arrive every 300ms (but this is a parameter I can change, probably I can set also 500 ms of delay before get the new values). The 'problem' is that the controls visible should be 10 but the charts to show are more (but I can try to manage this behavior with an horizontal scrollbar and update only the real visible controls), and for the zoom I need to think how to simplify the user interaction (all the controls should be shown with the same zoom and the same range of data). My idea is to manage thousands of data for each control, but show only a subset, for example 3 or 4 thousand, and manually set the range to show with the vertical scrollbar. What do you think about the workaround to rotate the control of 90 degrees? I will try to check also if it's possible, in a first phase, to draw the signals horizontally for my project 😊 For the moment thanks again for the support. |
Beta Was this translation helpful? Give feedback.
-
|
Because I'm using WPF, and with the last fix about the tick rotation, I can consider this question as closed (@swharden I don't know if you prefer to maintain open this question to improve the control and implement a 'real' vertical version 😊) Thanks. |
Beta Was this translation helpful? Give feedback.




Because I'm using WPF, and with the last fix about the tick rotation, I can consider this question as closed (@swharden I don't know if you prefer to maintain open this question to improve the control and implement a 'real' vertical version 😊)
Thanks.