cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Choose Language Hide Translation Bar
Ted
Ted
Level IV

How to move the labels inside the picture?

How to move the labels inside the picture (see picture)? Thank you in advance!
SUR_COMMUN.png

1 ACCEPTED SOLUTION

Accepted Solutions
frank_wang
Level IV

Re: How to move the labels inside the picture?

Hi Ted

No option in 'Red triangle' or somewhere in survival platform. My solution is add customer graph.

Sample data used 'Blenders', function 'survival'. Add JSL in customerize window.(See picture).

Hope it can help to solve your problem.

Attach JSL as below.

lineAuto_x=[9000 10000];
lineAuto_y=[0.95 0.95];
Pen Color("Red");Pen Size(2);
Drag Line( lineAuto_x, lineAuto_y );

lineM_x=[9000 10000];
lineM_y=[0.88 0.88];
Pen Color("Blue");Pen Size(2);
Drag Line( lineM_x, lineM_y );

Text( {10300, 0.93}, "Automatic" );
Text( {10300, 0.86}, "Manual" );
心若止水

View solution in original post

3 REPLIES 3
jthi
Super User

Re: How to move the labels inside the picture?

Make Legend floating:

jthi_0-1651415558476.png

and then you can drag and drop it

jthi_1-1651415583815.png

 

Edit: seems like you can just start drag and dropping without first changing the legend position.

 

-Jarmo
Ted
Ted
Level IV

Re: How to move the labels inside the picture?

Thanks, but my figure built here: Analyze->Realibility and Survival->Survival.
(Graph Builder
does not build survival curves)

frank_wang
Level IV

Re: How to move the labels inside the picture?

Hi Ted

No option in 'Red triangle' or somewhere in survival platform. My solution is add customer graph.

Sample data used 'Blenders', function 'survival'. Add JSL in customerize window.(See picture).

Hope it can help to solve your problem.

Attach JSL as below.

lineAuto_x=[9000 10000];
lineAuto_y=[0.95 0.95];
Pen Color("Red");Pen Size(2);
Drag Line( lineAuto_x, lineAuto_y );

lineM_x=[9000 10000];
lineM_y=[0.88 0.88];
Pen Color("Blue");Pen Size(2);
Drag Line( lineM_x, lineM_y );

Text( {10300, 0.93}, "Automatic" );
Text( {10300, 0.86}, "Manual" );
心若止水