Sha256: 512ada86dc98025a8f81bd716f21e0f035ebc5bbfd3223501a3d6d3e53880fa0

Contents?: true

Size: 378 Bytes

Versions: 5

Compression:

Stored size: 378 Bytes

Contents

# -*- coding: utf-8 -*-

class RailsDataExplorer
  class DataType
    class Quantitative

      # Responsibilities:
      #  * Provide methods for integer quantitative data type.
      #
      # Collaborators:
      #  * DataSet
      #
      class Integer < Quantitative

        def axis_tick_format(values)
          "d3.format('r')"
        end

      end
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
rails-data-explorer-1.0.4 lib/rails_data_explorer/data_type/quantitative/integer.rb
rails-data-explorer-1.0.3 lib/rails_data_explorer/data_type/quantitative/integer.rb
rails-data-explorer-1.0.2 lib/rails_data_explorer/data_type/quantitative/integer.rb
rails-data-explorer-1.0.1 lib/rails_data_explorer/data_type/quantitative/integer.rb
rails-data-explorer-1.0.0 lib/rails_data_explorer/data_type/quantitative/integer.rb