Reputation: 1011
I've created this charting tool in XNA that visualizes data and lets me interact with it (zooming in and out and moving back and forward in time). Anyway, I was simply wondering if I should stick with XNA or if windows forms could handle this sort of live interaction and this much data?
I don't know what more to provide, hopefully the screenshot is enough for general guidelines. Thanks in advance!
Upvotes: 0
Views: 139
Reputation: 21
I think that WPF should probably be able to handle this but you said yourself that it was already created in XNA. You should weigh up the drawbacks of having it in XNA rather with the drawbacks of porting it to WPF. I suppose that it really depends on the CPU. Rather than using native tools you could draw it manually with a .NET openGL equivalent meaning you can take advantage of more than 1 core
Upvotes: 2