Is there a way to configure an alert to draw a vertical line of a particular width (1, 2, etc.) across the pane from BOTTOM to TOP? I looked into using background color (setBarBgColor), but couldn't find a way to narrow the width to something that looks like a vertical line.
Announcement
Collapse
No announcement yet.
Alert draws vertical line
Collapse
X
-
Hello Lancer,
You could draw a line using drawLineRelative().
The example below will draw a vertical line with a thickness of 2.
PHP Code:drawLineRelative(0, high() + 1.0, 0, low() - 1.0, PS_SOLID, 2, Color.khaki, "line");
Jason K.
Project Manager
eSignal - an Interactive Data company
EFS KnowledgeBase
JavaScript for EFS Video Series
EFS Beginner Tutorial Series
EFS Glossary
Custom EFS Development Policy
New User Orientation
Comment