cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Choose Language Hide Translation Bar
voy-voy
Level II

Response Limits with if condition

Hallo Community,

 

I try to set column properties to draw always a line in my Charts. (Target Value)

But I use in my script the same Chart again for another Label.

 

So I try to skript 2 Response Limits but it doesn't work.

Is it possible to do it like this? Or is there any other Option?

 


Data Table( "Data1" ):"KM/MA"n <<
Eigenschaft festlegen(
	"Response Limits",
	If( :Firma_Job == "A", {Goal( Maximize ), Upper( 1138 ), Gewichtung( 1 ), Show Limits( 1 )}, 
			:Firma_Job == "J", {Goal( Maximize ), Upper( 230 ), Gewichtung( 1 ), Show Limits( 1 ) })
	);
1 REPLY 1
txnelson
Super User

Re: Response Limits with if condition

The Column Property, Response Limits only allows for 1 set per column.  I suggest that you look into the possibility of splitting your data into multiple columns based upon  Firma_Job.  Then separate Response Limits can be set.  If that would not provide you an answer, then you may have to result to adding into your graph additional Reference Lines through the use of JSL.

Jim