Strange Behavior of Set Scale on Plot Col Box
Consider this Plot Col Box:Names Default To Here( 1 );
New Window( "Example", pcb = Plot Col Box( "Probability", {0.325, -0.146, 0.251, 0.411} ) );
pcb << Set Scale( -1, 1 );
It runs OK and sets scale as expected.But as soon as I have all the numbers positive - it ignores the Set Scale:Names Default To Here( 1 );
New Window( "Example", pcb = Plot Col Box( "Probability", {0.325, 0.146, 0.251, 0.411}
...