# File mrplot/plots/bar.rb, line 136
    def initialize(ystep=10, ydiv=3, xlabel = "Data", ylabel = "Value", labels = Array.new)
      # Init the super class
      super()
      # Init attributes
      @ystep, @ydiv, @xlabel, @ylabel, @labels = ystep, ydiv, xlabel, ylabel, labels
      
      @ysubstitution = nil
      
      # Set the standard style
      @style.tick_size        = 2
    end