Class: Axlsx::ConditionalFormatting
- Inherits:
-
Object
- Object
- Axlsx::ConditionalFormatting
- Includes:
- OptionsParser
- Defined in:
- lib/axlsx/workbook/worksheet/conditional_formatting.rb
Overview
The recommended way to manage conditional formatting is via Worksheet#add_conditional_formatting
Conditional formatting allows styling of ranges based on functions
Instance Attribute Summary collapse
-
#rules ⇒ Array
Rules to apply the formatting to.
-
#sqref ⇒ String
Range over which the formatting is applied, in "A1:B2" format.
Instance Method Summary collapse
-
#add_rule(rule) ⇒ Object
Add a ConditionalFormattingRule.
-
#add_rules(rules) ⇒ Object
Add Conditional Formatting Rules to this object.
-
#initialize(options = {}) ⇒ ConditionalFormatting
constructor
Creates a new ConditionalFormatting object.
-
#to_xml_string(str = +'')) ⇒ String
Serializes the conditional formatting element.
Methods included from OptionsParser
Constructor Details
#initialize(options = {}) ⇒ ConditionalFormatting
Creates a new Axlsx::ConditionalFormatting object
15 16 17 18 |
# File 'lib/axlsx/workbook/worksheet/conditional_formatting.rb', line 15 def initialize( = {}) @rules = [] end |
Instance Attribute Details
#rules ⇒ Array
Rules to apply the formatting to. Can be either a hash of options to create a Axlsx::ConditionalFormattingRule, an array of hashes for multiple ConditionalFormattingRules, or an array of already created ConditionalFormattingRules.
30 31 32 |
# File 'lib/axlsx/workbook/worksheet/conditional_formatting.rb', line 30 def rules @rules end |
#sqref ⇒ String
Range over which the formatting is applied, in "A1:B2" format
22 23 24 |
# File 'lib/axlsx/workbook/worksheet/conditional_formatting.rb', line 22 def sqref @sqref end |
Instance Method Details
#add_rule(rule) ⇒ Object
Add a ConditionalFormattingRule. If a hash of options is passed in create a rule on the fly.
55 56 57 58 59 60 61 |
# File 'lib/axlsx/workbook/worksheet/conditional_formatting.rb', line 55 def add_rule(rule) if rule.is_a? Axlsx::ConditionalFormattingRule @rules << rule elsif rule.is_a? Hash @rules << ConditionalFormattingRule.new(rule) end end |
#add_rules(rules) ⇒ Object
Add Conditional Formatting Rules to this object. Rules can either be already created Axlsx::ConditionalFormattingRule elements or hashes of options for automatic creation. If rules is a hash instead of an array, assume only one rule being added.
44 45 46 47 48 49 |
# File 'lib/axlsx/workbook/worksheet/conditional_formatting.rb', line 44 def add_rules(rules) rules = [rules] if rules.is_a? Hash rules.each do |rule| add_rule rule end end |
#to_xml_string(str = +'')) ⇒ String
Serializes the conditional formatting element
83 84 85 86 87 88 89 90 |
# File 'lib/axlsx/workbook/worksheet/conditional_formatting.rb', line 83 def to_xml_string(str = +'') str << '<conditionalFormatting sqref="' << sqref << '">' rules.each_with_index do |rule, index| str << ' ' unless index.zero? rule.to_xml_string(str) end str << '</conditionalFormatting>' end |