Method: ScbiPlot::Lines#initialize

Defined in:
lib/scbi_plot/lines.rb

#initialize(file_name, title = nil) ⇒ Lines

Returns a new instance of Lines.



26
27
28
29
30
31
32
33
34
35
# File 'lib/scbi_plot/lines.rb', line 26

def initialize(file_name,title=nil)
  super
  @series=[]
  @line_width=2
  @show_leyend=true
  @vertical_lines=[]



end