What is the alternative for the chart extender attribute in PrimeFaces 5.2 and newer

前端 未结 1 1206
青春惊慌失措
青春惊慌失措 2020-12-02 01:19

I\'m using primefaces 5.2 latest version and tried for line chart, it\'s working fine.

Am trying to change the line chart axes color,background,border, etc. but exte

相关标签:
1条回答
  • 2020-12-02 01:46

    You should now set your extender from your model in your chartViewLine bean.

    LineChartModel model = new LineChartModel();
    model.setExtender("chartExtender");
    

    Attribute extender has been removed in PrimeFaces 5.0 (see also list of p:chart attributes from PrimeFaces 5.0 Documentation)

    0 讨论(0)
提交回复
热议问题