Chart - Set stacking order based on Probability

Here’s a cute requirement. A client needs a column chart to have the number of opps by salesperson (category) then by stagename (split type) with the stacked opps by stage sorted by highest probability.

Here’s the rub, the model must be an aggregate. Too many opps. So … can’t sort by Probability since the field isn’t available to be used in an aggregate model.


I’ve found a workaround for column charts. Strange that the value needs to be false though.

Highcharts.chart('container', {<br>&nbsp; &nbsp;&nbsp;yAxis: {<br>&nbsp; &nbsp; &nbsp; &nbsp; reversedStacks: false<br>&nbsp; &nbsp; }<br>});