Class: Ambling::Line::Settings::Indicator

Inherits:
Object
  • Object
show all
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

Method Summary

Methods included from Base

#build_xml, #initialize, #populate, #to_xml

Instance Attribute Details

#colorObject

#BBBB00

(hex color code) line and x balloon background color



904
905
906
# File 'lib/ambling/line.rb', line 904

def color
  @color
end

#enabledObject

true

(true / false)



894
895
896
# File 'lib/ambling/line.rb', line 894

def enabled
  @enabled
end

#line_alphaObject

100

(0 - 100)



909
910
911
# File 'lib/ambling/line.rb', line 909

def line_alpha
  @line_alpha
end

#selection_alphaObject

25

(0 - 100)



919
920
921
# File 'lib/ambling/line.rb', line 919

def selection_alpha
  @selection_alpha
end

#selection_colorObject

#BBBB00

(hex color code)



914
915
916
# File 'lib/ambling/line.rb', line 914

def selection_color
  @selection_color
end

#x_balloon_enabledObject

true

(true / false)



924
925
926
# File 'lib/ambling/line.rb', line 924

def x_balloon_enabled
  @x_balloon_enabled
end

#x_balloon_text_colorObject

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

#zoomableObject

true

(true / false)



899
900
901
# File 'lib/ambling/line.rb', line 899

def zoomable
  @zoomable
end