class Quby::Compiler::Entities::Charting::Plottable
Public Class Methods
new(key, options = {})
click to toggle source
Calls superclass method
# File lib/quby/compiler/entities/charting/plottable.rb, line 8 def initialize(key, options = {}) key = key label = options[:label] plotted_key = options.fetch(:plotted_key) { :value } global = options[:global] questionnaire_key = options[:questionnaire_key] super(key, label, plotted_key, questionnaire_key, global) end