如何在Highcharts列范围上添加stacklabel total?

时间:2015-07-09 06:40:18

标签: javascript jquery html highcharts

我目前正在使用Highcharts列范围,我需要在每个列/每个月的顶部添加堆栈标签,以显示我们的商店正在打开的总小时数。但遗憾的是,我'我尝试了不同的方式,仍然没有快乐。

这是我现有的jsfiddle; http://jsfiddle.net/rds_a/0mLa0yd5/2/

这是代码;

 $(function () {
    $('#container').highcharts({
        data: {
            table: 'summary'
        },
        chart: {
            type: 'columnrange'
        },
        colors: ['black', 'orange'],
        title: {
            text: 'Jackstone Store'
        },


        yAxis: {
            allowDecimals: false,
            title: {
                text: 'Units'
            },
                stackLabels: {
          enabled: true,
                style: {
                    fontWeight: 'bold',
                    color: (Highcharts.theme && Highcharts.theme.textColor) || 'gray'
                }
            }
        },

        plotOptions: {
            columnrange: {
                grouping: false,

                dataLabels: {
                    enabled: false,
                    color: (Highcharts.theme && Highcharts.theme.dataLabelsColor) || 'white',
                    style: {
                        textShadow: '0 0 3px black'
                    }
                }
            }
        }
    });
});

0 个答案:

没有答案