Hi, I am using a Proc Gchart to generate a graph with status_buckets along the xaxis and their Statuses (Pending Delivered Returned) of the each bucket on Y axis: This is the piece of code i am using to generate the graph. proc gchart data = Prep_File_Final_1; vbar status_bucket/noframe descending type=pct subgroup=Status legend=legend1 inside=pct g100 group=status_bucket nozero raxis=axis1 maxis=axis2 gaxis=axis3 ; run; quit; As of now the graph plots Status_bucket values like this: $0.01 - $0.24, $0.25 - $0.49, $0.50 - $0.99, $1.00 - $4.99, $10.00 - $24.99, $100.00 - $499.99 $25.00 - $49.99, $5.00 - $9.99, $50.00 - $99.99, $500.00 - Max i would like to get the values plotted in this order on the x axis : $0.01 - $0.24, $0.25 - $0.49, $0.50 - $0.99, $1.00 - $4.99, $5.00 - $9.99, $10.00 - $24.99, $25.00 - $49.99, $50.00 - $99.99, $100.00 - $499.99, $500.00 - Max Thanks,
... View more