What chart type do I need for a wave line like the sinus / cosinus? I'm using the default chart in windows forms.
chart1.Series[0].ChartType = SeriesChartType.Line;
Is this the right chart type for this?
Also how do I display radians on the X line...
chart1.ChartAreas[0].AxisX.Minimum = 0 * Math.PI;
chart1.ChartAreas[0].AxisX.Maximum = 2 * Math.PI;