class Rust::Plots::Renderable

Public Class Methods

new() click to toggle source
# File lib/rust-plots.rb, line 305
def initialize
    @options = Rust::Options.new
end

Public Instance Methods

[]=(option, value) click to toggle source
# File lib/rust-plots.rb, line 309
def []=(option, value)
    @options[option] = value
    
    return self
end

Protected Instance Methods

_render() click to toggle source
# File lib/rust-plots.rb, line 316
def _render()
    raise "You are trying to run an abstract Renderable"
end