Rick,
1. Pick point series.
2. Make sure Autosize is false.
3. Use the correct code to set the size.
Example below.
use this code
Telerik.Charting.
ChartSeries rulecs = new Telerik.Charting.ChartSeries();
rulecs.Name = Resources.
MyGlobalResources.Rules;
rulecs.Appearance.FillStyle.MainColor =
Color.Black;
rulecs.Appearance.FillStyle.SecondColor =
Color.Black;
rulecs.Type = Telerik.Charting.ChartSeriesType.Point;
rulecs.Appearance.PointMark.FillStyle.MainColor =
Color.Black;
rulecs.Appearance.PointMark.FillStyle.SecondColor =
Color.Black;
rulecs.Appearance.PointDimentions.AutoSize = false;
//rulecs.Appearance.PointMark.Dimensions.Height = 6;
//rulecs.Appearance.PointMark.Dimensions.Width = 6;
rulecs.Appearance.PointDimentions.Width = 6;
rulecs.Appearance.PointDimentions.Height = 6;
rulecs.Items[i].Appearance.PointDimentions.AutoSize =
false;
rulecs.Items[i].Appearance.PointDimentions.Height = Telerik.Charting.Styles.
Unit.Pixel(9);
rulecs.Items[i].Appearance.PointDimentions.Width = Telerik.Charting.Styles.
Unit.Pixel(9);
rulecs.Items[i].Appearance.FillStyle.MainColor =
Color.Red;
and not the code below
rulecs.Items[i].PointAppearance.Dimensions.Height = Telerik.Charting.Styles.
Unit.Pixel(9);
rulecs.Items[i].PointAppearance.Dimensions.Width = Telerik.Charting.Styles.
Unit.Pixel(9);
rulecs.Items[i].PointAppearance.Dimensions.AutoSize =
false;
it was and still is confusing to me. you can see that i tried both scenarios and commented them out. i searched the help but the help was of no help to me in this case.
good luck with this spooky stuff,
avh