Sha256: a520930346bfd1f21d30c5d75c6dbabd5eb29013ed147c3400de38883eb5fc5a

Contents?: true

Size: 963 Bytes

Versions: 1

Compression:

Stored size: 963 Bytes

Contents

<fieldset class="form_container">
  <%= legend_tag "Top Referring Keywords", :help => 'This graph lists the actual search terms that drove traffic to the selected site(s). Click on each bar for a count of visits using a particular keyword phrase.' -%>
  <br />
  <div id="keyword_chart" class="chart" style="width: 100%; border: 1px solid #999999; background-color: #ffffff; text-align: center;"></div>
  
  <%= Seer::visualize(
        @keywords_series, 
        :as => :bar_chart,
        :in_element => 'keyword_chart',
        :series => {:series_label => 'keyword', :data_method => 'count'},
        :chart_options => {
          :height => @keywords_series.size * 20,
          :width => 900,
          :is_3_d => false,
          :legend => 'none',
          :colors => ["#7e7587"],
          :title => "Visit Count by Keyword",
          :title_font_size => 9,
          :title_x => '',
          :axis_font_size => 10
        }
      )
  -%>
</fieldset>

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
mitamirri-0.13.8 app/views/trackable_sessions/_keywords_graph.html.erb