I am having a diagram now but I would like to modify the line styles and the axis. My code is: title1 'Degree of fulfilment (in %)'; footnote1 height=2 angle=90 ' '; proc sgplot data=have; format time_interval ddmmyy10.; series x=time_interval y=degree_of_fulfilment / group=city; yaxis values=(0 to 100 by 10) valueshint display=(nolabel); xaxis values=(20258 to 20748 by 14) valueshint display=(nolabel); run; However SAS doesnt adapt the axis although it should (SAS 9.2). I have been searching on the internet but it somehow doesnt work and I dont know why. Is there also a way to choose the colors and forms of the lines in the diagram without writing a new code? In SAS 9.4 there is the order keylegend but in SAS 9.2 it doesnt seems to be possible to change the location of the legend..
... View more