winformアプリケーションにsyncfusionチャートがあります。 一連のデータを追加します。 シリーズの特定のポイント(最初のシリーズの25番目のデータポイント)を赤い円と「フォーカス」テキストでハイライトしたいとします。Syncfusion Chart(winform)にChartCustomPointのラベルを配置する方法
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);
しかし、表示されたテキストはシンボルに貼り付けられています。私はラベルとシンボルの間にスペースを入れたいと思います。 私が見逃した不動産はありますか?
ありがとうございました
ありがとうございます –