Method: Charty::Plotters::RelationalPlotter#initialize
- Defined in:
- lib/charty/plotters/relational_plotter.rb
#initialize(x, y, color, style, size, data: nil, **options, &block) ⇒ RelationalPlotter
Returns a new instance of RelationalPlotter.
431 432 433 434 435 436 437 438 |
# File 'lib/charty/plotters/relational_plotter.rb', line 431 def initialize(x, y, color, style, size, data: nil, **, &block) super(x, y, color, data: data, **, &block) self.style = style self.size = size setup_variables end |