Class: Ambling::Line::Settings::Indicator
- Inherits:
-
Object
- Object
- Ambling::Line::Settings::Indicator
- Includes:
- Base
- Defined in:
- lib/ambling/line.rb
Overview
INDICATOR
Constant Summary collapse
- VALUES =
[:enabled,:zoomable,:color,:line_alpha,:selection_color,:selection_alpha,:x_balloon_enabled,:x_balloon_text_color]
Instance Attribute Summary collapse
-
#color ⇒ Object
- #BBBB00
-
(hex color code) line and x balloon background color.
-
#enabled ⇒ Object
- true
-
(true / false).
-
#line_alpha ⇒ Object
- 100
-
(0 - 100).
-
#selection_alpha ⇒ Object
- 25
-
(0 - 100).
-
#selection_color ⇒ Object
- #BBBB00
-
(hex color code).
-
#x_balloon_enabled ⇒ Object
- true
-
(true / false).
-
#x_balloon_text_color ⇒ Object
- text_color
-
(hex color code).
-
#zoomable ⇒ Object
- true
-
(true / false).
Method Summary
Methods included from Base
#build_xml, #initialize, #populate, #to_xml
Instance Attribute Details
#color ⇒ Object
- #BBBB00
-
(hex color code) line and x balloon background color
904 905 906 |
# File 'lib/ambling/line.rb', line 904 def color @color end |
#enabled ⇒ Object
- true
-
(true / false)
894 895 896 |
# File 'lib/ambling/line.rb', line 894 def enabled @enabled end |
#line_alpha ⇒ Object
- 100
-
(0 - 100)
909 910 911 |
# File 'lib/ambling/line.rb', line 909 def line_alpha @line_alpha end |
#selection_alpha ⇒ Object
- 25
-
(0 - 100)
919 920 921 |
# File 'lib/ambling/line.rb', line 919 def selection_alpha @selection_alpha end |
#selection_color ⇒ Object
- #BBBB00
-
(hex color code)
914 915 916 |
# File 'lib/ambling/line.rb', line 914 def selection_color @selection_color end |
#x_balloon_enabled ⇒ Object
- true
-
(true / false)
924 925 926 |
# File 'lib/ambling/line.rb', line 924 def x_balloon_enabled @x_balloon_enabled end |
#x_balloon_text_color ⇒ Object
- text_color
-
(hex color code)
929 930 931 |
# File 'lib/ambling/line.rb', line 929 def x_balloon_text_color @x_balloon_text_color end |
#zoomable ⇒ Object
- true
-
(true / false)
899 900 901 |
# File 'lib/ambling/line.rb', line 899 def zoomable @zoomable end |