Method: Axlsx.validate_marker_symbol
- Defined in:
- lib/axlsx/util/validators.rb
.validate_marker_symbol(v) ⇒ Object
Requires that the value is one of :default, :circle, :dash, :diamond, :dot, :picture, :plus, :square, :star, :triangle, :x
309 310 311 |
# File 'lib/axlsx/util/validators.rb', line 309 def self.validate_marker_symbol(v) RestrictionValidator.validate :marker_symbol, [:default, :circle, :dash, :diamond, :dot, :picture, :plus, :square, :star, :triangle, :x], v end |