Module: Jqplot::Rails::ViewHelpers
- Defined in:
- lib/jqplot-rails/view_helpers.rb
Instance Method Summary collapse
Instance Method Details
#jqplot(height, width, data_series, options = {}) ⇒ Object
3 4 5 6 7 8 9 |
# File 'lib/jqplot-rails/view_helpers.rb', line 3 def jqplot(height, width, data_series, ={}) dom_id = SecureRandom.hex(12) height = height.is_a?(String) ? height : "#{height}px" width = width.is_a?(String) ? width : "#{width}px" content_tag :div, nil, data: {series: data_series, options: , role: 'jqplot'}, id: dom_id, style: "height:#{height};width:#{width}" end |