Drawing curve, the curve of abnormal value point, let his color to red, and showed abnormal point value
Please bring chart controls to have this function or other have the function of control recommend
thank you
CodePudding user response:
Series. The Points [x] MarkerColor setting of a color
CodePudding user response:
Public void DrawPoints (System. Windows. Forms. DataVisualization. Charting. Chart Chart, int channel, double v)
{
Chart. The Series [channel]. Points. AddXY (m_xValue, v);
If (v & gt; 80)
{
Chart. The Series [channel]. Points [r]. (int) m_xValue MarkerColor=Color. Red;
}
I wrote, I found no color change
CodePudding user response: