I have created an XY Plot with analysis values in the Y axis and datetime in the X axis. This works just fine but I would like to make the symbols for the points that "Fail" a different color. Is this possible with the Web Chart?
Thanks
Mike
Can I assume the silence means that this cannot be done??
You can change color of a certain data point by using PointStyle.
Such as following code will change color of second data point of first data series
-----------------
//Create a new point style
C1.Win.C1Chart.PointStyle ps = new C1.Win.C1Chart.PointStyle();
//Set Series index
ps.SeriesIndex = 0;
//Set Data point index
ps.PointIndex = 1;
//Set color for point style
ps.SymbolStyle.Color = System.Drawing.Color.Green ;
//Add this style to chart
this.C1WebChart1.ChartGroups[0].ChartData.PointStylesList.Add(ps);
------------
-Dave.
<dmmattix@cpkelco.com> wrote in message news:211131@10.0.1.98... I have created an XY Plot with analysis values in the Y axis and datetime in the X axis. This works just fine but I would like to make the symbols for the points that "Fail" a different color. Is this possible with the Web Chart? Thanks Mike http://helpcentral.componentone.com/cs/forums/p/77218/211131.aspx#211131
Dave,
Worked great. Thanks for the response.