Skip to main content
Announcements
See what Drew Clarke has to say about the Qlik Talend Cloud launch! READ THE BLOG
cancel
Showing results for 
Search instead for 
Did you mean: 
dclark0699
Creator
Creator

Line Chart Background Color Extends Beyond Point

Is there anyway to get this chart below to not have the line from 2 to 3 be shaded blue? My Background formula has the color set to be blue between -2 and 2 (fABS(xAxis) <=2). Is there an option somewhere I can set so the line after the point doesn't get shaded?

chartsample.png

2 Replies
Anil_Babu_Samineni

That may possible, But when you use Fabs in your expression that won't make sense to me. Because, Fabs() helps us to change the symbol like -ve to +ve. What was the expression you used?

Is should be some thing like for BG of your expression

If(xAxis >= '-2' and xAxis <= 2, Blue(), LightCyan())

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful
dclark0699
Creator
Creator
Author

Logically fabs()<=2 is the same as >= -2 and <= 2