2

ドットを削除してp:lineChart、チャートを単なる連続線として描画する方法は?

ありがとう

4

2 に答える 2

1

私には機能しない属性があり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);
于 2013-04-06T12:15:06.737 に答える