You could add some dummy rows - with dates, but with Freq set to 0 or missing.
![hogi_0-1708786643627.png hogi_0-1708786643627.png](https://community.jmp.com/t5/image/serverpage/image-id/61458iB9E622F5B6571DA5/image-size/medium?v=v2&px=400)
dt = New Table( "test",
Add Rows( 20 ),
New Column( "date",
Format( "d/m/y h:m:s", 22, 0 ),
Formula( Today() + In Days( Row() ) )
),
New Column( "freq",
Set each value(if (contains({5,6,7}, row()), . , 1) )
)
);
dt << Graph Builder(
Variables( X( :date ), Frequency( :freq ) ),
Elements( Bar( X) )
)