Profile Picture

Arrow

Posted By ANDRE SIMOES 13 Years Ago
Author
Message
ANDRE SIMOES
Posted 13 Years Ago
View Quick Profile
Forum Newbie

Forum Newbie (9 reputation)Forum Newbie (9 reputation)Forum Newbie (9 reputation)Forum Newbie (9 reputation)Forum Newbie (9 reputation)Forum Newbie (9 reputation)Forum Newbie (9 reputation)Forum Newbie (9 reputation)Forum Newbie (9 reputation)

Group: Forum Members
Last Active: 11 Years Ago
Posts: 9, Visits: 1
Hi, there is any way to easily put an arrow on the end of a line? Im trying to draw custom axes inside my graphic using lines. There is any way to put an arrow on the end?

m_Line2 = (NLineSeries)m_Chart.Series.Add(SeriesType.Line);
m_Line2.Name = "Alimentador";
m_Line2.InflateMargins = true;
m_Line2.DataLabelStyle.Visible = true;

m_Line2.MarkerStyle.Visible = false;
m_Line2.SamplingMode = SeriesSamplingMode.Enabled;
m_Line2.LineSize = new NLength(50);
m_Line2.MarkerStyle.PointShape = PointShape.Cylinder;
m_Line2.MarkerStyle.Width = new NLength(1.5f, NRelativeUnit.ParentPercentage);
m_Line2.MarkerStyle.Height = new NLength(1.5f, NRelativeUnit.ParentPercentage);
m_Line2.UseXValues = true;
m_Line2.Values.Add(0);
m_Line2.XValues.Add(-125);
m_Line2.Values.Add(0);
m_Line2.XValues.Add(20);
m_Line2.BorderStyle.Color = Color.Black;

I thought this m_Line2.MarkerStyle.PointShape = PointShape.Cylinder should do something like this


Thanks




Similar Topics


Reading This Topic