Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Replace dimention labels by images

Hi can anyone tells me if it is possible to make by script or other that thing:

Capture.JPG.jpg

I want in every chart put some images for each media instead of text

I want to make the same thing with the brands names - associate every brand to his logo and display that logo instead of the brand

thank u for your help

1 Reply
manas_bn
Creator
Creator

I think you can create a table with buffer info load and use the images in the front end. But this is possible only in listboxes, text boxes and tables (pivot/straight). You can't do this with a bar chart AFAIK.

Fact:

LOAD * INLINE [

Customer,  Exclusive, Bid

A, 1, 40

B, 0, 1

C, 0, 2

D, 0, 4

E, 0, 7

F, 0, 10

];

imagepath:

buffer info LOAD * Inline [

Customer, ImagesPath

A, C:\Qlik\Jellyfish.jpg

B, C:\Qlik\Chrysanthemum.jpg

C, C:\Qlik\Desert.png

D, C:\Qlik\Koala.jpg

E, C:\Qlik\Tulips.jpg

F, C:\Qlik\Penguins.jpg

];

After this, go to Dimension tab and click on Advanced. Put representation as Info as Image and you should be good.Capture.PNG.png