Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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?
try this way,u can use text box with required static data. and place wherever u need.
Check this app
I am unable to open the app. Can you please share the script? and what i need to add in the expression/dimensions
try this way,u can use text box with required static data. and place wherever u need.
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])
thanks..it worked