Class: Writexlsx::Table

Inherits:
Object
  • Object
show all
Includes:
Utility
Defined in:
lib/write_xlsx/chart.rb

Constant Summary

Constants included from Utility

Utility::CHAR_WIDTHS, Utility::COL_MAX, Utility::PERL_TRUE_VALUES, Utility::ROW_MAX, Utility::SHEETNAME_MAX, Utility::STR_MAX

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Utility

#absolute_char, #check_dimensions, #check_dimensions_and_update_max_min_values, #check_parameter, #color, #convert_date_time, #convert_font_args, #dash_types, delete_files, #escape_url, #fill_properties, #float_to_str, #get_font_latin_attributes, #get_font_style_attributes, #get_image_properties, #layout_properties, #legend_properties, #line_fill_properties, #line_properties, #palette_color, #params_to_font, #pattern_properties, #pixels_to_points, #process_bmp, #process_gif, #process_jpg, #process_png, #process_workbook_options, #ptrue?, #put_deprecate_message, #quote_sheetname, #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_a_body_pr, #write_a_def_rpr, #write_a_end_para_rpr, #write_a_lst_style, #write_a_p_formula, #write_a_p_pr_formula, #write_a_solid_fill, #write_a_srgb_clr, #write_anchor, #write_auto_fill, #write_color, #write_comment_path, #write_def_rpr_r_pr_common, #write_div, #write_fill, #write_font, #write_stroke, #write_tx_pr, #write_xml_declaration, #xl_cell_to_rowcol, #xl_col_to_name, #xl_range, #xl_range_formula, #xl_rowcol_to_cell, #xl_string_pixel_width, #xml_str

Constructor Details

#initialize(params = {}) ⇒ Table

Returns a new instance of Table.



18
19
20
21
22
23
24
25
26
27
28
# File 'lib/write_xlsx/chart.rb', line 18

def initialize(params = {})
  @horizontal = true
  @vertical = true
  @outline = true
  @show_keys = false
  @horizontal = params[:horizontal] if params.has_key?(:horizontal)
  @vertical   = params[:vertical]   if params.has_key?(:vertical)
  @outline    = params[:outline]    if params.has_key?(:outline)
  @show_keys  = params[:show_keys]  if params.has_key?(:show_keys)
  @font       = convert_font_args(params[:font])
end

Instance Attribute Details

#fontObject (readonly)

Returns the value of attribute font.



16
17
18
# File 'lib/write_xlsx/chart.rb', line 16

def font
  @font
end

#horizontalObject (readonly)

Returns the value of attribute horizontal.



16
17
18
# File 'lib/write_xlsx/chart.rb', line 16

def horizontal
  @horizontal
end

#outlineObject (readonly)

Returns the value of attribute outline.



16
17
18
# File 'lib/write_xlsx/chart.rb', line 16

def outline
  @outline
end

#palette=(value) ⇒ Object (writeonly)

Sets the attribute palette

Parameters:

  • value

    the value to set the attribute palette to.



30
31
32
# File 'lib/write_xlsx/chart.rb', line 30

def palette=(value)
  @palette = value
end

#show_keysObject (readonly)

Returns the value of attribute show_keys.



16
17
18
# File 'lib/write_xlsx/chart.rb', line 16

def show_keys
  @show_keys
end

#verticalObject (readonly)

Returns the value of attribute vertical.



16
17
18
# File 'lib/write_xlsx/chart.rb', line 16

def vertical
  @vertical
end

Instance Method Details

#write_d_table(writer) ⇒ Object



32
33
34
35
36
37
38
39
40
41
42
# File 'lib/write_xlsx/chart.rb', line 32

def write_d_table(writer)
  @writer = writer
  @writer.tag_elements('c:dTable') do
    @writer.empty_tag('c:showHorzBorder', attributes) if ptrue?(horizontal)
    @writer.empty_tag('c:showVertBorder', attributes) if ptrue?(vertical)
    @writer.empty_tag('c:showOutline',    attributes) if ptrue?(outline)
    @writer.empty_tag('c:showKeys',       attributes) if ptrue?(show_keys)
    # Write the table font.
    write_tx_pr(font)                                 if ptrue?(font)
  end
end