Arrow Color?  [SOLVED]

Questions about MultiCharts .NET and user contributed studies.
JohnR
Posts: 26
Joined: 05 Sep 2012
Has thanked: 2 times
Been thanked: 2 times

Arrow Color?

Postby JohnR » 19 Mar 2016

How do you set an arrow's color in c#?

User avatar
ABC
Posts: 718
Joined: 16 Dec 2006
Location: www.abctradinggroup.com
Has thanked: 125 times
Been thanked: 408 times
Contact:

Re: Arrow Color?

Postby ABC » 20 Mar 2016

JohnR,

if you are using an IArrowObject for drawing arrows, it has a Color property.

Regards,

ABC

JohnR
Posts: 26
Joined: 05 Sep 2012
Has thanked: 2 times
Been thanked: 2 times

Re: Arrow Color?  [SOLVED]

Postby JohnR » 20 Mar 2016

Got it, thanks.

Here's the snippet that sets the color to green (in case anyone else has a brain fart).

Code: Select all

m_arrw.Value = DrwArrow.Create(bottom,false);
m_arrw.Value.Color = Color.Green;


Return to “MultiCharts .NET”