Module: Nyaplot::Diagrams::Line
- Includes:
- Jsonizable
- Defined in:
- lib/nyaplot/diagram.rb
Instance Attribute Summary collapse
-
#color ⇒ String
The color code.
-
#legend ⇒ Bool
Decide if the diagram prepare legend.
-
#stroke_width ⇒ Numeric
The width of stroke.
-
#title ⇒ String
The title of this chart.
-
#x ⇒ Symbol
The column label from which the line chart is created.
-
#y ⇒ Symbol
The column label from which the line chart is created.
Instance Method Summary collapse
Methods included from Jsonizable
#before_to_json, #get_property, included, #init_properties, #set_property, #to_json
Instance Attribute Details
#color ⇒ String
Returns the color code.
245 |
# File 'lib/nyaplot/diagram.rb', line 245 define_group_properties(:options, [:title, :x, :y, :color, :stroke_width, :legend]) |
#legend ⇒ Bool
Returns decide if the diagram prepare legend.
245 |
# File 'lib/nyaplot/diagram.rb', line 245 define_group_properties(:options, [:title, :x, :y, :color, :stroke_width, :legend]) |
#stroke_width ⇒ Numeric
Returns the width of stroke.
245 |
# File 'lib/nyaplot/diagram.rb', line 245 define_group_properties(:options, [:title, :x, :y, :color, :stroke_width, :legend]) |
#title ⇒ String
Returns the title of this chart.
245 |
# File 'lib/nyaplot/diagram.rb', line 245 define_group_properties(:options, [:title, :x, :y, :color, :stroke_width, :legend]) |
#x ⇒ Symbol
Returns the column label from which the line chart is created.
245 |
# File 'lib/nyaplot/diagram.rb', line 245 define_group_properties(:options, [:title, :x, :y, :color, :stroke_width, :legend]) |
#y ⇒ Symbol
Returns the column label from which the line chart is created.
245 |
# File 'lib/nyaplot/diagram.rb', line 245 define_group_properties(:options, [:title, :x, :y, :color, :stroke_width, :legend]) |
Instance Method Details
#process_data(df, labels) ⇒ Object
247 248 249 250 251 252 253 254 |
# File 'lib/nyaplot/diagram.rb', line 247 def process_data(df, labels) label_x = labels[0] label_y = labels[1] x(label_x) y(label_y) @xrange = [df[label_x].to_a.min, df[label_x].to_a.max] @yrange = [df[label_y].to_a.min, df[label_y].to_a.max] end |
#zoom? ⇒ Boolean
256 257 258 |
# File 'lib/nyaplot/diagram.rb', line 256 def zoom? true end |