cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Discussions

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

control chart

bonjour,

comment faire pour augmenter la taille des traits de la moyenne et/ ou des box-plots à l'aide du script.

 

peut-on changer la couleur des points et des traits?

 

cordialement

 

 

 

Control chart.jpg

1 ACCEPTED SOLUTION

Accepted Solutions
jthi
Super User

Re: control chart

Right click > Customize

jthi_0-1761542962805.png

will let you change some settings easily and some take a bit more effort as they are all separate items (boxplots)

jthi_1-1761543032029.png

jthi_2-1761543054152.png

Some customizations can be possibly "saved" using Presets and you can also create script to do your customizations

-Jarmo

View solution in original post

3 REPLIES 3
jthi
Super User

Re: control chart

Right click > Customize

jthi_0-1761542962805.png

will let you change some settings easily and some take a bit more effort as they are all separate items (boxplots)

jthi_1-1761543032029.png

jthi_2-1761543054152.png

Some customizations can be possibly "saved" using Presets and you can also create script to do your customizations

-Jarmo
Françoise
Level VI

Re: control chart

bonjour,

 

merci beaucoup jthi.

j'utilise la fonction personnaliser et je sauvegarde le script.

 

cordialement

 

 

hogi
Level XIII

Re: control chart

If editing dozens of Box plots is no fun for you,
you can access the FrameBox via JSL scripting -  and then talk to the Marker and BoxPlotSegs: 

 

fb1 = current Report()[Framebox(1)];


markerseg = fb1 << find seg("MarkerSeg");
markerseg << set marker size(10);

// talks to ALL Box plot: boxSegs = fb1 << find Segs("BoxPlotSeg"); boxSegs << set line width (3)

 

Recommended Articles