Cumulative bar chart について

johtaniです。

とりあえず、データを次のように仮定しています。

PUT commulative_sample/log/4
{
  "@timestamp" : "2015-06-01T00:00:00Z",
  "count" : 1
}


PUT commulative_sample/log/3
{
  "@timestamp" : "2015-05-02T00:00:00Z",
  "count" : 1
}


PUT commulative_sample/log/2
{
  "@timestamp" : "2015-05-01T00:00:00Z",
  "count" : 1
}


PUT commulative_sample/log/1
{
  "@timestamp" : "2015-04-01T00:00:00Z",
  "count" : 1
}

まず、X-axisに、filter aggsを選択して図のように1つ目のフィルタを4月末まで、2つ目を5月末まで、3つ目を6月末までとします。開始の日時については、見たいデータの開始日を入力する想定です。
サンプルの図では、*を指定していますので、すべてのデータが対象となっています。

次に、Split BarsでDateHistgramで、Monthlyを選択すると、図のように、各棒グラフが月ごとの色分けになるという感じです。

こんなイメージであってますでしょうか?