Hi @Feli,
Create a graph using graph builder.
Click the Make Into Data Table option from the red triangle to create a table of graphs.
Sparklines using JMP GraphBuilder
Using the Raleigh Temps sample data table I created a line graph using Graph Builder as follows--
I changed year to ordinal from continuous so I can have a single year for each graph.
Y: Temperature
X: Month
Page By: Year
JSL Script for creating the graph--
Graph Builder(
Variables( X( :Month ), Y( :Temperature ), Page( :Year ) ),
Elements( Line( X, Y, Legend( 4 ) ) ),
SendToReport(
Dispatch(
{},
"400",
ScaleBox,
{Legend Model(
4,
Properties( -1, {Line Width( 4 )}, Item ID( "Mean", 1 ) )
)}
)
)
);