Sha256: 740b06790f6a31f959698db57c6814f17f6848bd606a2b0071f0cdd9e752290a

Contents?: true

Size: 606 Bytes

Versions: 3

Compression:

Stored size: 606 Bytes

Contents

module GoogleVisualr
  module Interactive

    # http://code.google.com/apis/chart/interactive/docs/gallery/columnchart.html
    class ColumnChart < BaseChart
      include GoogleVisualr::Packages::CoreChart

      def package_name
        if material
          "bar"
        else
          super
        end
      end

      def chart_name
        if material
          "Bar"
        else
          super
        end
      end

      # For Configuration Options, please refer to:
      # http://code.google.com/apis/chart/interactive/docs/gallery/columnchart.html#Configuration_Options
    end

  end
end

Version data entries

3 entries across 3 versions & 2 rubygems

Version Path
google_visualr_rails5-2.5.2 lib/google_visualr/interactive/column_chart.rb
google_visualr-2.5.1 lib/google_visualr/interactive/column_chart.rb
google_visualr-2.5.0 lib/google_visualr/interactive/column_chart.rb