| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
Sorry, something went wrong.
* Add a new rendering context for WPF that renders the graph to a DrawingGroup instead of creating WPF elements. This improves performance slightly but most importantly, it avoids the nasty behavior of creating new children to the Canvas during the Render phase. When there are a lot of curves this can cause the WPF Measure/Arrange/Render cycle to break and fail to redraw the curves. * Create a base class WpfRenderContext that holds functionality shared between the different rendering modes. PlotView.RenderContext now returns this type instead of CanvasRenderContext. * Tooltips now work in the PlotView if you use the DrawingRenderContext. * Create a CanvasPlotView in ExampleBrowser.WPF that * Replace Assert.Is* with Assert.That(..., Is.*) in all tests to get rid of legacy NUnit calls * Fix one of the Issues examples that fails unexpectedly if the current culture does not use dot at decimal separator.
| Back | FazBrowse Home | New Git URL |
Fixes #1794.
Checklist
Changes proposed in this pull request:
Add a new rendering context for WPF that renders the graph to a DrawingGroup instead of creating WPF elements. This improves performance slightly but most importantly, it avoids the nasty behavior of creating new children to the Canvas during the Render phase. When there are a lot of curves this can cause the WPF Measure/Arrange/Render cycle to break and fail to redraw the curves.
Create a base class WpfRenderContext that holds functionality shared between the different rendering modes. PlotView.RenderContext now returns this type instead of CanvasRenderContext.
Tooltips now work in the PlotView if you use the DrawingRenderContext.
Create a CanvasPlotView in ExampleBrowser.WPF that
Replace Assert.Is* with Assert.That(..., Is.*) in all tests to get rid of legacy NUnit calls
Fix one of the Issues examples that fails unexpectedly if the current culture does not use dot at decimal separator.
@oxyplot/admins