如何使用Primefaces jQplot实现禁用单个系列上的堆叠

时间:2017-02-09 07:16:44

标签: javascript primefaces jqplot

我使用Primefaces 6来满足我公司的图表需求,这依赖于jQplot。 对于一个项目,我试图在带有负值的堆积条形图上叠加折线图,以获得如下内容:

Account Retention Visualisation

问题在于,当我尝试将linechartseries添加到与两个barchartseries相同的模型时,在模型上设置setStacked(true);时,折线图成为堆栈的一部分,因为Primefaces似乎不允许单独禁用系列上的堆叠,仅适用于每个型号。所以当用

渲染图表时我最终得到了这个
<p:chart type="bar" model="#{backingBean.cartesianChartModel}"/>

Line Chart as part of the Stack

经过一些调查后,我发现jQplot能够通过在JS选项中传递disableStack : true来禁用单个系列上的Stacking,所以问题是是否可以在呈现的页面上以某种方式覆盖它,或者通过PF或通过一些JS黑客?我觉得使用扩展器只能将苹果用于整个模型吗?

相关问题:Disable individual stacking

2 个答案:

答案 0 :(得分:1)

通过阅读文档,我找到了问题的解决方案,如果不是问题:

似乎Primefaces允许单个系列在此版本的系列创建中超越堆栈,通过传递

LineChartSeries.setDisableStack(true);

这很简单。

答案 1 :(得分:1)

我想这可能是可能的。我过去曾使用扩展程序功能处理一些jqPlot黑客攻击。

在我的情况下,例如,我使用扩展程序函数定义了一个圆环图,如下所示:

    private void createDonutModel() {
       donutModel = new DonutChartModel();
       donutModel.setLegendPosition("s");
       donutModel.setLegendPlacement(LegendPlacement.OUTSIDE);
       donutModel.setSliceMargin(4);
       donutModel.setDataFormat("value");
       donutModel.setShadow(false);
       donutModel.setExtender("donutExtender");
       donutModel.setSeriesColors("B81C40, FFA600, 79B54A");
    }

相应的javascript正在对jqPlot进行一些更改:

/**
 * Customized jqPlot JQuery layout of the Donut Chart for Status Dashboard.
 */
function donutExtender() {
   this.cfg.seriesDefaults = {
      // make this a donut chart.
      renderer:$.jqplot.DonutRenderer,
      rendererOptions:{          
          thickness: 26,
          ringMargin: 0,
          fill: true,
          padding: 0,
        sliceMargin: 4,
        // Pies and donuts can start at any arbitrary angle.
        startAngle: -90,
        showDataLabels: false,
        // By default, data labels show the percentage of the donut/pie.
        // You can show the data 'value' or data 'label' instead, or 'percent'
        dataLabels: 'value',
            shadow: false
      }
   }                

   this.cfg.gridPadding = { 
        top: 0, right: 0, bottom: 0, left: 0                
   }

   this.cfg.legend = {
        show: false
   }

   this.cfg.grid = { drawBorder: false,
        shadow: false,        
        background: "transparent"
   };
}

所以你可以尝试这样的事情吗? 将系列的扩展配置保留为空,除了您感兴趣的那个...

function chartExtender() {
   this.cfg.series = [
   { //...
   },
   { // ...
   },
   {
      disableStack: true          
   }
   ]
}

值得一试......