BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
xxformat_com
Barite | Level 11

Hi,

 

is there an option to stop the dropline at the axis?

 

I found alternative solution using drawline but i wouldnice to have directly the option in dropline or so.

 

1. With dropline (missing the option)

 

proc template;
    define statgraph class;
        begingraph;
	        layout overlay 
	            / xaxisopts=(linearopts=(origin=60))
	              yaxisopts=(linearopts=(origin=100))
	              walldisplay=none;
	              
	        scatterplot x=height y=weight;

            dropline x=72 y=150 
                  / dropto=both
                    lineattrs=(color=blue pattern=dot)
                    label='72,150';
                    
            endlayout;
        endgraph;
    end;
run;

proc sgrender data=sashelp.class template=class ;
run;

sas_dropline1.JPG

 

2. With drawline (expected result)

sas_dropline2.JPG

 

Regards

1 ACCEPTED SOLUTION

Accepted Solutions
Jay54
Meteorite | Level 14

Yes, you have found a shortcoming in the axis origin feature that has not been reported so far.  I suspect the combination of axis origin with drop line has not been used often.  DrawLine would work where you provide the start and end coordinates.  Alternate plot statement would be a VECTORPLOT, where again you provide the coordinates, but at least the data is in the same data set for consistency.

View solution in original post

1 REPLY 1
Jay54
Meteorite | Level 14

Yes, you have found a shortcoming in the axis origin feature that has not been reported so far.  I suspect the combination of axis origin with drop line has not been used often.  DrawLine would work where you provide the start and end coordinates.  Alternate plot statement would be a VECTORPLOT, where again you provide the coordinates, but at least the data is in the same data set for consistency.

SAS INNOVATE 2024

Innovate_SAS_Blue.png

Registration is open! SAS is returning to Vegas for an AI and analytics experience like no other! Whether you're an executive, manager, end user or SAS partner, SAS Innovate is designed for everyone on your team. Register for just $495 by 12/31/2023.

If you are interested in speaking, there is still time to submit a session idea. More details are posted on the website. 

Register now!

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

Find more tutorials on the SAS Users YouTube channel.

Get the $99 certification deal.jpg

 

 

Back in the Classroom!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 1 reply
  • 464 views
  • 0 likes
  • 2 in conversation