ドットを削除してp:lineChart
、チャートを単なる連続線として描画する方法は?
ありがとう
私には機能しない属性がありshowMarkers
ます (私は PrimeFaces 3.4.2 を使用しています) が、それらを非表示にする方法を見つけました。
少しハックです。ショーケースで動作するようにしましwidget_category
た。チャートのウィジェットに置き換えるだけです。Web ブラウザーで許可されている場合は、JavaScript コンソールを使用してショーケースからオンラインでテストすることもできます (クロムでテスト済み)。
// loop through the series
for (var i = 0; i < widget_category.cfg.series.length; ++i) {
// Hide markers
widget_category.cfg.series[i].showMarker = false;
// I'm not sure you want this when talking about 'continuous line'
// but you can make your chart smooth this way :
widget_category.cfg.series[i].rendererOptions = { smooth: true };
}
// Ask a refresh using the modified configuration object
widget_category.refresh(widget_category.cfg);