Method: Gnuplot::Plot#method_missing
- Defined in:
- lib/gnuplot.rb
#method_missing(methId, *args) ⇒ Object
Invoke the set method on the plot using the name of the invoked method as the set variable and any arguments that have been passed as the value. See the set method for more details.
114 115 116 |
# File 'lib/gnuplot.rb', line 114 def method_missing( methId, *args ) set methId.id2name, *args end |