diff options
Diffstat (limited to 'lib/axlsx/drawing/chart.rb')
| -rw-r--r-- | lib/axlsx/drawing/chart.rb | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/axlsx/drawing/chart.rb b/lib/axlsx/drawing/chart.rb index 63a12641..1e0b3fb6 100644 --- a/lib/axlsx/drawing/chart.rb +++ b/lib/axlsx/drawing/chart.rb @@ -62,7 +62,7 @@ module Axlsx # Configures the vary_colors options for this chart # @param [Boolean] v The value to set - def vary_colors=(v) Axlsx::validate_boolean(v); @vary_colors = v; end + def vary_colors=(v) Axlsx.validate_boolean(v); @vary_colors = v; end # The title object for the chart. # @return [Title] @@ -149,13 +149,13 @@ module Axlsx # Show the legend in the chart # @param [Boolean] v # @return [Boolean] - def show_legend=(v) Axlsx::validate_boolean(v); @show_legend = v; end + def show_legend=(v) Axlsx.validate_boolean(v); @show_legend = v; end # How to display blank values # @see display_blanks_as # @param [Symbol] v # @return [Symbol] - def display_blanks_as=(v) Axlsx::validate_display_blanks_as(v); @display_blanks_as = v; end + def display_blanks_as=(v) Axlsx.validate_display_blanks_as(v); @display_blanks_as = v; end # The style for the chart. # see ECMA Part 1 ยง21.2.2.196 @@ -194,12 +194,12 @@ module Axlsx # Whether only data from visible cells should be plotted. # @param [Boolean] v # @return [Boolean] - def plot_visible_only=(v) Axlsx::validate_boolean(v); @plot_visible_only = v; end + def plot_visible_only=(v) Axlsx.validate_boolean(v); @plot_visible_only = v; end # Whether the chart area shall have rounded corners. # @param [Boolean] v # @return [Boolean] - def rounded_corners=(v) Axlsx::validate_boolean(v); @rounded_corners = v; end + def rounded_corners=(v) Axlsx.validate_boolean(v); @rounded_corners = v; end # Serializes the object # @param [String] str |
