L
lfvoydfv
Guest
I have a c# chart (System.Windows.Forms.DataVisualization.Charting) that I plot a few points with markers. I add a new Series to the Chart, set the ChartType to SeriesChartType.FastPoint, and set the MarkerStyle to
MarkerStyle.Circle. I want to change the marker style for one point to MarkerStyle.Diamond, say the 3rd point, which I do as chrtPlot.Series[name].Points[2].MarkerStyle = MarkerStyle.Diamond; However, when I display the chart, all the points have the Circle marker style, which is the style I set when adding the series. I checked in the debugger that the marker style for the 3rd point is Diamond but it's not displaying as a diamond. Is there something else I need to set to get a different marker style for one point of the series?
Continue reading...
MarkerStyle.Circle. I want to change the marker style for one point to MarkerStyle.Diamond, say the 3rd point, which I do as chrtPlot.Series[name].Points[2].MarkerStyle = MarkerStyle.Diamond; However, when I display the chart, all the points have the Circle marker style, which is the style I set when adding the series. I checked in the debugger that the marker style for the 3rd point is Diamond but it's not displaying as a diamond. Is there something else I need to set to get a different marker style for one point of the series?
Continue reading...