Sha256: 14831af788bd14ac46f55755caac6b02862d95d6c199a09aa514ed78a8199ae7

Contents?: true

Size: 1.18 KB

Versions: 6

Compression:

Stored size: 1.18 KB

Contents

# All files in the 'lib' directory will be loaded
# before nanoc starts compiling.

require 'lazy_high_charts'
include LazyHighCharts::LayoutHelper

def highchart_example
  # https://github.com/michelson/lazy_high_charts/wiki/Combination-Chart
  chart = LazyHighCharts::HighChart.new('graph') do |f|
    f.title({ text: "Combination chart"})
    f.options[:xAxis][:categories] = 
      ['Apples', 'Oranges', 'Pears', 'Bananas', 'Plums']
    f.labels(:items=>
      [:html=>"Total fruit consumption", 
       :style=>{:left=>"40px", :top=>"8px", :color=>"black"} ])
    f.series(:type=> 'column',:name=> 'Jane',:data=> [3, 2, 1, 3, 4])
    f.series(:type=> 'column',:name=> 'John',:data=> [2, 3, 5, 7, 6])
    f.series(:type=> 'column', :name=> 'Joe',:data=> [4, 3, 3, 9, 0])
    f.series(:type=> 'spline',:name=> 'Average', 
             :data=> [3, 2.67, 3, 6.33, 3.33])
    f.series(:type=> 'pie',:name=> 'Total consumption', 
      :data=> [
        {:name=> 'Jane', :y=> 13, :color=> 'red'}, 
        {:name=> 'John', :y=> 23,:color=> 'green'},
        {:name=> 'Joe', :y=> 19,:color=> 'blue'}
      ],
      :center=> [100, 80], :size=> 100, :showInLegend=> false)
  end
  high_chart("some_id", chart)
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
lazy_high_charts-1.6.1 spec/dummy_nanoc/lib/default.rb
lazy_high_charts-1.5.8 spec/dummy_nanoc/lib/default.rb
lazy_high_charts-1.5.6 spec/dummy_nanoc/lib/default.rb
lazy_high_charts-1.5.5 spec/dummy_nanoc/lib/default.rb
lazy_high_charts-1.5.4 spec/dummy_nanoc/lib/default.rb
lazy_high_charts-1.5.2 spec/dummy_nanoc/lib/default.rb