Class: Writexlsx::Chart::Chartline
- Inherits:
-
Object
- Object
- Writexlsx::Chart::Chartline
- Defined in:
- lib/write_xlsx/chart/series.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.
-
#line ⇒ Object
readonly
Returns the value of attribute line.
-
#type ⇒ Object
readonly
Returns the value of attribute type.
Instance Method Summary collapse
- #fill_defined? ⇒ Boolean
-
#initialize(params) ⇒ Chartline
constructor
A new instance of Chartline.
- #line_defined? ⇒ Boolean
Methods included from Gradient
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, #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_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) ⇒ Chartline
Returns a new instance of Chartline.
13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
# File 'lib/write_xlsx/chart/series.rb', line 13 def initialize(params) @line = params[:line] @fill = params[:fill] # Set the line properties for the marker.. @line = line_properties(@line) # Allow 'border' as a synonym for 'line'. @line = line_properties(params[:border]) if params[:border] # Set the gradient fill properties for the series. @gradient = gradient_properties(params[:gradient]) # Set the fill properties for the marker. @fill = fill_properties(@fill) @fill = nil if ptrue?(@gradient) end |
Instance Attribute Details
#fill ⇒ Object (readonly)
Returns the value of attribute fill.
11 12 13 |
# File 'lib/write_xlsx/chart/series.rb', line 11 def fill @fill end |
#line ⇒ Object (readonly)
Returns the value of attribute line.
11 12 13 |
# File 'lib/write_xlsx/chart/series.rb', line 11 def line @line end |
#type ⇒ Object (readonly)
Returns the value of attribute type.
11 12 13 |
# File 'lib/write_xlsx/chart/series.rb', line 11 def type @type end |
Instance Method Details
#fill_defined? ⇒ Boolean
33 34 35 |
# File 'lib/write_xlsx/chart/series.rb', line 33 def fill_defined? fill && ptrue?(fill[:_defined]) end |
#line_defined? ⇒ Boolean
29 30 31 |
# File 'lib/write_xlsx/chart/series.rb', line 29 def line_defined? line && ptrue?(line[:_defined]) end |