Method: Axlsx::ScatterChart#initialize

Defined in:
lib/axlsx/drawing/scatter_chart.rb

#initialize(frame, options = {}) ⇒ ScatterChart

Creates a new scatter chart



33
34
35
36
37
38
39
40
41
# File 'lib/axlsx/drawing/scatter_chart.rb', line 33

def initialize(frame, options={})
  @vary_colors = 0
  @scatter_style = :lineMarker

       super(frame, options)
  @series_type = ScatterSeries
  @d_lbls = nil
  parse_options options
end