Class: Writexlsx::ChartArea
- Inherits:
-
Object
- Object
- Writexlsx::ChartArea
- Includes:
- Utility
- Defined in:
- lib/write_xlsx/chart.rb
Constant Summary
Constants included from Utility
Utility::COL_MAX, Utility::ROW_MAX, Utility::SHEETNAME_MAX, Utility::STR_MAX
Instance Attribute Summary collapse
-
#fill ⇒ Object
readonly
Returns the value of attribute fill.
-
#layout ⇒ Object
readonly
Returns the value of attribute layout.
-
#line ⇒ Object
readonly
Returns the value of attribute line.
Instance Method Summary collapse
-
#initialize(params = {}) ⇒ ChartArea
constructor
A new instance of ChartArea.
Methods included from Utility
#absolute_char, #check_dimensions, #check_dimensions_and_update_max_min_values, #check_parameter, #convert_date_time, #dash_types, delete_files, #fill_properties, #float_to_str, #layout_properties, #line_fill_properties, #line_properties, #palette_color, #pixels_to_points, #ptrue?, #put_deprecate_message, #r_id_attributes, #row_col_notation, #shape_style_base, #store_col_max_min_values, #store_row_max_min_values, #substitute_cellref, #underline_attributes, #v_shape_attributes_base, #v_shape_style_base, #value_or_raise, #write_anchor, #write_auto_fill, #write_color, #write_comment_path, #write_div, #write_fill, #write_font, #write_stroke, #write_xml_declaration, #xl_cell_to_rowcol, #xl_col_to_name, #xl_range, #xl_range_formula, #xl_rowcol_to_cell, #xml_str
Constructor Details
#initialize(params = {}) ⇒ ChartArea
43 44 45 46 47 48 49 50 51 52 53 54 55 |
# File 'lib/write_xlsx/chart.rb', line 43 def initialize(params = {}) @layout = layout_properties(params[:layout]) # Allow 'border' as a synonym for 'line'. border = params_to_border(params) # Set the line properties for the chartarea. @line = border ? line_properties(border) : line_properties(params[:line]) # Map deprecated Spreadsheet::WriteExcel fill colour. fill = params[:color] ? { :color => params[:color] } : params[:fill] @fill = fill_properties(fill) end |
Instance Attribute Details
#fill ⇒ Object (readonly)
Returns the value of attribute fill.
41 42 43 |
# File 'lib/write_xlsx/chart.rb', line 41 def fill @fill end |
#layout ⇒ Object (readonly)
Returns the value of attribute layout.
41 42 43 |
# File 'lib/write_xlsx/chart.rb', line 41 def layout @layout end |
#line ⇒ Object (readonly)
Returns the value of attribute line.
41 42 43 |
# File 'lib/write_xlsx/chart.rb', line 41 def line @line end |