The summary data table does not have the proper format for a limits data table.  Furthermore, a limits data table only works if the limits are constant.  It does not work with non-constant limits.  You will need to grab the sigma from the Show Sigma report and then use JSL similar to the following
Control Chart Builder(
	Variables( Y( :NO ), Subgroup( :State ) ),
	Chart(
		Position( 1 ),
		Set Control Limits( {Avg( 0.026 ), Sigma( 0.02 )} ),
	),
	Chart(
		Position( 2 ),
		Set Control Limits( {Avg( 0.02 ), Sigma( 0.0241124109987879 )} )
	)
)