棒グラフの棒にデータポイントを表示するにはどうすればよいですか?
マウスが置かれたときにのみデータポイントを強調表示するデータヒントまたはツールヒントを使用したくありません。
バーに常にデータポイントを表示したい。
取得する正しい方法はありますか?
ありがとう。
私はまさにこのようにしたい

以下は私のコードです
<p:barChart id="barChartId" value="#{myBean.myModel}"             
        orientation="horizontal"             
        stacked="true" extender="ext" animate="true" shadow="false" />              
<h:outputScript>         
  function ext() {  
    this.cfg.highlighter = {
             useAxesFormatters: false,
             tooltipAxes: 'x'   
    };      
    this.cfg.legend = {
            show: true,
            location: 'ne',
            placement: 'outside'
    }; 
    this.cfg.seriesDefaults = {
            pointLabels : { show: true },
    };              
  }        
</h:outputScript>
ここでは、蛍光ペンと凡例は正常に機能していますが、ポイント ラベルがバーに表示されていません