All the ShapeRenderingMode enumeration values - what do they do - the documentation doesn't say.
For line and bar charts I am currently using:
nevronChartControl.Settings.ShapeRenderingMode = ShapeRenderingMode.Default;
nevronChartControl.Settings.JitterMode = JitterMode.Auto;
which is OK, but gives noticeably jagged lines.
I tried setting JitterMode to none and ShapeRendering mode to AntiAlias, which was an improvement for 2D line and bar (and 2D and 3D grid surface) charts. However, for 3D line and bar charts, there was a "thickening" of the borders around symbols and bars which looked worse. If you expanded the bars, for example, you could see that the previous single vertical line was now smeared.
I guess I am looking for combined information about the best use of ShapeRenderingMode, JitterMode (and GDI+ vs OpenGL) for different situations.
I obviously want the best image quality, but to be aware of potential performance issues; e.g. in rotation of 3d surface charts.
Thanks
Kevin