在堆积条上显示标签

时间:2014-12-11 11:10:18

标签: javascript jquery bar-chart stacked-area-chart

我想在每个堆叠的条上显示标签,如蓝色条上的蓝色,黄色条上的黄色等。 这是我在JSFiddle中的代码:

 [1]:http://jsfiddle.net/Sa_2019/n7r57pv7/ 

这是我的代码:

 <div id="placeholder" style="width:600px;height:300px;"></div>
  var data = [
    {label: 'foo', color:'red', data: [[1,300], [2,300], [3,300], [4,300], [5,300]]},
    {label: 'bar', color:'blue', data: [[1,800], [2,600], [3,400], [4,200], [5,0]]},
    {label: 'baz', color:'yellow', data: [[1,100], [2,200], [3,300], [4,400], [5,500]]},
     ];

        $.plot($("#placeholder"), data, {
       series: {
       stack: 1,
       bars: {
        show: true,
        lineWidth: 1,
        barWidth: 0.8,
        order: 1, 
        fill: true
    },
    yaxis : {
        min : 0,
        tickLength: 0
    } ,
    xaxis: {
    tickLength: 0,
    axisLabel: "Date",
    axisLabelUseCanvas: true,
    axisLabelFontSizePixels: 12,
    axisLabelFontFamily: 'Arial',
    axisLabelPadding: 3,
    color: "#838383",
    timeformat: "%b/%y"
     }
    }
   });

请知道。

谢谢

1 个答案:

答案 0 :(得分:0)

您可以使用Highcharts的dataLabels来解决此问题。代码如下: -

   plotOptions: {
            column: {
                stacking: 'normal',
                  dataLabels: {
                     enabled: true,
                     color: 'white', 
                          formatter: function () {
                                  //  return the value you want to show on labels.. depends on your data ...
                           console.log(this)
                          }
                  }
            }
   }

这样你可以参考...... 据我所知,我添加了字符串&#34;随机&#34;它根据你的逻辑改变它。

http://jsfiddle.net/n1mcs4d1/

相关问题