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

Announcements
Join us in Toronto Sept 9th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

removal of label blank space

Hi,

I have a pie chart that shows region , city values

1 Solution

Accepted Solutions
Not applicable
Author

Hi,

If you create a custom expression set to use the Text as Popup attribute then this will give you the type of label you are after.

I have modified your sample model to illustrate how this could work.

Hope this helps.

Kind regards,

Rod

View solution in original post

4 Replies
Not applicable
Author

bump

fvelascog72
Partner - Specialist
Partner - Specialist

Try this:

In expression use: if (isnull(Region),'',Region)

Not applicable
Author

Hi,


Load in script level like below it will replace - with space & also hide '-' mark in pie-chart

Germ:

LOAD ID,

     if(isnull(Region),' ',Region) as Region,

     City,

     Zip_Code,

     round(Longitude) as Latitude ,

     round(Latitude) as Longitude

FROM

(ooxml, embedded labels, table is Sheet1);

Not applicable
Author

Hi,

If you create a custom expression set to use the Text as Popup attribute then this will give you the type of label you are after.

I have modified your sample model to illustrate how this could work.

Hope this helps.

Kind regards,

Rod