cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Learn how to build custom Python data connectors and further customize JMP’s Data Connector Framework with the Python Data Connector Demo, available now in the JMP Marketplace!
  • See how to create experiments to support product design and ID useful product features. Register for June 12 webinar, 2pm 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