I have a syncfusion chart in my winform application. I add a series of data. I want to highlight a specific point of the series (let's say the 25th data point of the first series) with a red circle and the "Focus" text.
ChartCustomPoint cp = new ChartCustomPoint();
cp.CustomType = ChartCustomPointType.PointFollow;
cp.PointIndex=25;
cp.SeriesIndex=1;
cp.Symbol.Shape = ChartSymbolShape.Circle;
cp.Symbol.Color = Color.Red;
cp.Symbol.Marker.LineInfo.Width = 4;
cp.Alignment = ChartTextOrientation.Up;
cp.Text = "Focus";
chartControl1.CustomPoints.Add(cp);
but, the displayed text is stuck to the symbol. I would like to add space between the label and the symbol. Is there a property I missed ?
Thank you