Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

How to add static data to legend in a line graph?

I need to display static information in the legend of the line graph.

I have created an inline table with Application, FTE count, Region

Line graphs gives me the count of tickets resolved region wise. Legend displays the region. But I have to display the FTE count against the region in the legion.

Does anybody know how this can be done? What functionality in the chart can be used to display this information?

1 Solution

Accepted Solutions
buzzy996
Master II
Master II

try this way,u can use text box with required static data. and place wherever u need.

View solution in original post

5 Replies
anbu1984
Master III
Master III

Check this app

Anonymous
Not applicable
Author

I am unable to open the app. Can you please share the script? and what i need to add in the expression/dimensions

buzzy996
Master II
Master II

try this way,u can use text box with required static data. and place wherever u need.

anbu1984
Master III
Master III

Load * Inline [

Region,Year,Tickets resolved

R1,2014,1000

R1,2015,2000

R2,2014,2000

R2,2015,5000];

Load * Inline [

Region,FTE

R1,10

R2,20

];

Dim: Year, FTE

Expr: Sum([Tickets resolved])

Anonymous
Not applicable
Author

thanks..it worked