Format point differently from others in the series
Posted: Thu Jun 23, 2005 1:24 pm
Hi,
How do I change the color of an individual point in a series. Currently all the points are blue circles with an inter-connecting red line (see below). I wish to format the point representing the most latest reading differently from the rest. In the example below it would be (270, 200).
Thanks,
Paul
How do I change the color of an individual point in a series. Currently all the points are blue circles with an inter-connecting red line (see below). I wish to format the point representing the most latest reading differently from the rest. In the example below it would be (270, 200).
Code: Select all
windRoseSeries1.Pen.Color = System.Drawing.Color.Red
windRoseSeries1.Pointer.Brush.Color = System.Drawing.Color.Blue
windRoseSeries1.Pointer.Style = Steema.TeeChart.Styles.PointerStyles.Circle
windRoseSeries1.Add(0, 50)
windRoseSeries1.Add(90, 100)
windRoseSeries1.Add(180, 150)
windRoseSeries1.Add(270, 200)
Paul