I have a dataset that 99% of them has one value. But there are many other values which take so few proportion.

This will be one example.

Code:
sysuse auto, clear
gen var=1
replace var=2 if _n==_N
replace var=3 if _n==_N-1
histogram var
Then, histogram is not very informative. But graphic designers often make this largest stick smaller, and make other sticks relatively bigger, by omitting a certain range on Y axis. And the biggest stick will have ~~ sign in the middle indicating some range was cut off.

We have seen this. But how can I make this in Stata?