Hi - I was using this following code to generate a box graph.


Code:
sysuse auto, clear

forval y = 31/51 {
       if mod(`y', 5) {
                  label def turnz `y' "", add
             }
       }

label value turn turnz

tab turn

graph box price, over(turn)

While the value labels were shown in the tab code, they were not reflected in the graph box code.

Is there a way to have graph box include the label definitions?

Thanks,

Peter.