https://github.com/michelson/lazy_high_chartsを使用して、x 軸に日付、y 軸にスコアを持つ単純な面グラフをレンダリングしようとしています。lazy_high_charts の次のスニペットを使用しました。グラフは表示されますが、x 軸は日付ではありません。
@h = LazyHighCharts::HighChart.new('graph', style: '') do |f|
f.options[:chart][:defaultSeriesType] = "area"
f.options[:plotOptions] = {areaspline: {pointInterval: 1.day, pointStart: 10.days.ago}}
f.series(:name=>'John', :data=>[3, 20, 3, 5, 4, 10, 12 ,3, 5,6,7,7,80,9,9])
f.series(:name=>'Jane', :data=> [1, 3, 4, 3, 3, 5, 4,-46,7,8,8,9,9,0,0,9])
f.xAxis(type: :datetime)
end
http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptionsのような、日間隔の時系列が欲しい/series-pointstart-datetime/ .
上記のコードは、次の html を生成します ( http://jsfiddle.net/nUxvA/ )
両方を比較しようとしましたが、プロット オプションが異なります。x軸に日間隔の目盛りを付けるにはどうすればよいですか?