Reputation: 491
I have some 3d points I have to plot and since as far as I know there isn't a chart library for C# that will do this easily, I thought the next easier way to do it would be to create the points in a viewport3d and save the image.
Upvotes: 2
Views: 889
Reputation: 564383
If you're looking to do charts, you might want to consider just using a WPF chart control, such as Visifire.
Otherwise, you can use a RenderTargetBitmap to render the Viewport.
Upvotes: 1