Skip to main content
Nintex Community Menu Bar
Question

How to change order of split field on chart

  • July 11, 2024
  • 3 replies
  • 5 views

Forum|alt.badge.img+1


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!

This topic has been closed for replies.

3 replies

Forum|alt.badge.img+20

Add a snippet to the chart and include the following.


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

Forum|alt.badge.img+1

Where do I add the snippet exactly?


Forum|alt.badge.img+1

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