要使用jqplot

时间:2018-06-21 10:57:32

标签: primefaces jsf-2.2 jqplot

我正在使用jqplot显示month的图形销售额。为此,我使用了水平条形图,我想显示条形图中每个堆叠条形的值。    我尝试使用以下代码,

        this.cfg.seriesDefaults = {

               renderer:$.jqplot.BarRenderer,

            rendererOptions: {
                shadowOffset: 0,
                  barWidth :'30',
                barDirection: 'horizontal',
                highlightMouseDown: true   
            },
            pointLabels: {show: true ,
                 hideZeros: true,

                 formatString: '%d',

           // xpadding : -90

             xpadding: 20, ypadding: 50,

             // edgeTolerance: -55

            location :'w'


            }

,但是它在条形图中显示了点标签,显示的是第一个堆叠区域的正确值,但最后显示了堆叠条形的总数。 我想显示栏内的每个区域值而不是总计。 enter image description here

0 个答案:

没有答案