Hi,
I want to change label arrow alignment to left horizontally. you can see it in attached snapshot that arrow of label pointing to upward vertically. How can I change arrow direction to horizontally left.
For showing arrow I have used this code.-
NPointSeries point = new NPointSeries();
point.Size = new NLength(0);
_cartesianChart.Series.Add(point);
point.DataLabelStyle.Visible = true;
point.DataLabelStyle.TextStyle.StringFormatStyle.VertAlign = VertAlign.Center;
point.DataLabelStyle.Visible = true;
point.UseXValues = true;
point.Values.Add(142);
point.XValues.Add(6);
point.Labels.Add("Some Label");
point.DataLabelStyle.TextStyle.BackplaneStyle.FillStyle.SetTransparencyPercent(100);
point.DataLabelStyle.TextStyle.BackplaneStyle.StandardFrameStyle.Visible = false;
point.DataLabelStyle.TextStyle.TextFormat = TextFormat.XML;
point.DataLabelStyle.Format = "<label>";