How to change order of split field on chart


I have this chart on a page to show Leads by Status. I just want to reverse the order of Status so it follows the logical path. I want ‘New’ furthest to the left (not right), then ‘Called’ etc. How can I do this? Totally stumped here. Thanks!

Add a snippet to the chart and include the following.


var chartObj = arguments[0], $ = skuid.$; $.extend(true,chartObj.yAxis[0],{ reversedStacks: false }); <br>

Where do I add the snippet exactly?

Ah figured it out and got it to work, thank you!