Class: WhirledPeas::Settings::GraphSettings
- Inherits:
-
ElementSettings
- Object
- ElementSettings
- WhirledPeas::Settings::GraphSettings
- Defined in:
- lib/whirled_peas/settings/graph_settings.rb
Instance Method Summary collapse
Instance Method Details
#axis_color ⇒ Object
7 8 9 |
# File 'lib/whirled_peas/settings/graph_settings.rb', line 7 def axis_color @_axis_color || theme.axis_color end |
#axis_color=(color) ⇒ Object
11 12 13 |
# File 'lib/whirled_peas/settings/graph_settings.rb', line 11 def axis_color=(color) @_axis_color = TextColor.validate!(color) end |
#validate! ⇒ Object
15 16 17 18 |
# File 'lib/whirled_peas/settings/graph_settings.rb', line 15 def validate! super raise SettingsError, "`height` must be set for GraphSettings" if height.nil? end |