# File lib/gruff/base.rb, line 820 def clip_value_if_greater_than(value, max_value) (value > max_value) ? max_value : value end