It doesn't look like your screenshot made it onto your post and that might help us understand your goal. Could you try posting it again? Also, it would be helpful to have some example data to work with. Could you recreate your chart with one of the example data sets, or using the table below?
Names Default to here(1);
New Table( "Example Data",
Add Rows( 50 ),
New Column( "Responses", Numeric, "Continuous", Format( "Best", 12 ),
Formula( Floor( Random Uniform( 1, 9.99 ) ) )
),
New Column( "Satisfied", Numeric, "Ordinal", Format( "Best", 12 ),
Formula( If( :Responses < 3, 0, :Responses > 7, 2, 1 ) ),
Value Labels( {0 = "Dissatisfied", 1 = "Neither", 2 = "Satisfied"} ),
Use Value Labels( 1 )
)
);
Copy this into a new script window and press run to create the table.