class Plotrb::Scale::DataRef

A data reference specifies the field for a given scale property

Public Class Methods

new(&block) click to toggle source

TODO: Support group

# File lib/plotrb/scales.rb, line 330
def initialize(&block)
  define_single_val_attributes(:data, :field)
  self.instance_eval(&block) if block
  self
end

Private Instance Methods

attribute_post_processing() click to toggle source
# File lib/plotrb/scales.rb, line 338
def attribute_post_processing

end