3

特定の日に複数のグループを除いて、ハイチャートでグループ化された縦棒グラフを作成しようとしています。グラフは次のようになりますhttp://www.highcharts.com/demo/column-stacked-and-grouped (このフォーラムの質問http://highslide.com/forum/viewtopic.php?f=9&t=19575から)ただし、積み上げられた各バーがグループ化された一連の列 (積み上げられていない) に置き換えられている場合を除きます。したがって、1 日に複数の列グループが表示され、各グループが 1 人のユーザーに対応するという考え方になります。誰もこれを行う方法を知っていますか?

編集:これは私が見つけたjsfiddleですhttp://jsfiddle.net/pMA2H/1/

<html xml:lang="en" xmlns="http://www.w3.org/1999/xhtml" lang="en">
<head>
  <meta http-equiv="content-type" content="text/html; charset=UTF-8"/>
  <title>ElementStacks - jsFiddle demo</title>

  <script type='text/javascript' src='http://code.jquery.com/jquery-1.4.2.js'></script>

  <link rel="stylesheet" type="text/css" href="/css/normalize.css"/>
  <link rel="stylesheet" type="text/css" href="/css/result-light.css"/>



      <script type='text/javascript' src="http://highcharts.com/js/testing.js"></script>


  <style type='text/css'>

  </style>



<script type='text/javascript'>//<![CDATA[ 
$(function(){
/*
Data is:
                            Gross Amount    Cost Amount
Services       Australia    20              10              
               Germany      30              15
Manufacturing  Australia    35              17
               Germany      25              12

----

Would like to be able define my categories hierarchically - example:
xAxis: [{
  categories: [{
    name: 'Services'
    children: ['Australia', 'Germany']
  },{
    name: 'Manufacturing'
    children: ['Australia', 'Germany']
  }]
}]

and get a result similar to what is fudged up by using the renderer on the right.
*/

var chart = new Highcharts.Chart({
    chart: {
        renderTo: 'container',
        type: 'column'
    }, 
    xAxis: [{
        categories: ['Australia', 'Germany', 'Australia', 'Germany'],
        labels: {
            y: 40
        }
    }],
    legend: {
        margin: 40
    },

    series: [{
        name: 'Gross',
        data: [['Services', 20],['Services',30],['Manufacturing', 35],['Manufacturing', 25]]
    },{
        name: 'Cost',
        data: [['Services', 10],['Services',15],['Manufacturing', 17],['Manufacturing', 13]]
    }]
}, function(chart){
    $('.highcharts-axis:first > text').each(function() {
       this.setAttribute('y', parseInt(this.getAttribute('y')) - 20)
    });

    var text1 = chart.renderer.text("Services", 150, 340).add();
    var text2 = chart.renderer.text("Manufacturing", 350, 340).add();
});
});//]]>  

</script>


</head>
<body>
  <div id="container" style="height: 400px; width: 500px"></div>


</body>


</html>

ここのスレッドからhttp://highcharts.uservoice.com/forums/55896-general/suggestions/2230615-grouped-x-axis#comments . ただし、x 軸のインクリメントのコードは少し面倒です。各インクリメントを手動で追加し、その間隔を含めてデータ ポイントが確実に整列するようにする必要があるからです。代わりに、日付の pointStart と pointInterval を指定できるグラフを以前に作成しました。誰かがよりエレガントなソリューションを知っていれば、それは素晴らしいことです。

4

4 に答える 4