hi all, in proc gplot i have one doubt i attached one graph in rtf file. see that x;5 10 15 20 25 30 35 40 45 50 55 60 65 70 75 80 85 90 95 100 y;1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 the data is like this. this is i have to plot on a graph AXIS1 LABEL=('Cumulative of employees'); AXIS2 LABEL=(ANGLE=90 'Cumulative of salaries); PROC GPLOT DATA=ds; PLOT Y*X /HAXIS=AXIS1 VAXIS=AXIS2; RUN; QUIT; x-axis employees y-axis salaries informatio PLOT procedure all y are plotted on graph depend on x values. the graph is ok. but my requirement is that i want to emphasis on 50 and 75 values on y axis. i.e. some mart tick on these points 50 and 75. graph is appeared but points are not appeared only 50 and 75 points are appeared with some emphasis on it. some color taking y values 1 to 20 . But only x values represent 50 and 75 in over all graph. and emphasis on this points with some color or mark for understanding purpose these two are maximum. how to do this can any one suggest me thanks in advance. 1 Message was edited by: ravikumar kummari
... View more