Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
正如您可能知道的那样,漏斗渲染器将在绘制漏斗之前自动对值进行排序。就我而言,这根本没有帮助,因为我试图在每个阶段展示销售。
有什么办法可以禁用自动排序?
我自己解决了这个问题,但不幸的是,它需要我通过注释第 182 和 183 行来修改 jqplot.funnelRenderer.js:
this.data.sort( function (a, b) { return b[1] - a[1]; } ); idxs.sort( function (a, b) { return b[1] - a[1]; });
我说很遗憾,因为我无法预测这种变化的后果,即使它目前看起来还可以。