如何在条形图中的条形图上显示数据点?
我不想使用只有在鼠标悬停时才会突出显示数据点的数据提示或工具提示。
我想始终在栏上显示数据点。
有什么正确的方法可以得到它吗?
谢谢。
我想要这样
以下是我的代码
<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>
在这里,荧光笔和图例工作正常,但点标签未显示在栏上