cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Instantly extract effect sizes, F-ratios, and FDR-adjusted p-values from your models with the Calculate Effects Sizes extension, available now in the JMP Marketplace!
  • New to JMP? Join us Sept. 23-24 for the Early User Edition of Discovery Summit, tailor-made for new users. Register now for free!
  • See how to use the JMP Marketplace – Free tools to expand JMP capabilities. Register. July 10, 2 pm US Eastern Time.

Discussions

Solve problems, and share tips and tricks with other JMP users.
Choose Language Hide Translation Bar
Françoise
Level VI

probleme pour afficher la légende

bonjour,

 

j'ai une légende en bas d'un graphique mais tout ne s'affiche pas.

 

voir fichiers joints.

 

comment faire pour avoir la légende complète?

 

cordialementprobleme légende.PNGparamètres légende 1.PNGparamètres légende  2.PNG

 

2 REPLIES 2

Re: probleme pour afficher la légende

Hi @Françoise, could you attach a data table with a script for the graph attached? This might help us better understand what you are asking for.

jthi
Super User

Re: probleme pour afficher la légende

It looks like there could be a row change within the value which is being shown in Legend Box -> it won't fit

Names Default To Here(1);

dt = New Table("Untitled",
	Add Rows(3),
	Compress File When Saved(1),
	New Column("Column 1", Character, "Nominal", Set Values({"aaa
aaa", "bbb", "ccc
ccc
ccc"})),
	New Column("Column 2", Numeric, "Continuous", Format("Best", 12), Set Values([1, 2, 3])),
	New Column("Column 3", Numeric, "Continuous", Format("Best", 12), Set Values([2, 4, 6]))
);

gb = dt << Graph Builder(
	Size(518, 454),
	Show Control Panel(0),
	Legend Position("Bottom"),
	Variables(X(:Column 2), Y(:Column 3), Overlay(:Column 1)),
	Elements(Points(X, Y, Legend(17)), Smoother(X, Y, Legend(18)))
);

jthi_0-1701877957049.png

 

-Jarmo

Recommended Articles