Skip to main content
Announcements
Qlik Introduces a New Era of Visualization! READ ALL ABOUT IT
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Define the style cross over the dashboards

Hi people,

How can I change the style of my dashboard based on a Excel (or any other configuration file) with the Rgbs and the images of my customer? Or there exists a better way to do it?

Thanks!!!!

1 Reply
Not applicable
Author

Try loading your colors using excel like below

Excel file format:

RedGreenBlue
22300
2321160
00223
02230
0255255
255255255
707070
000

Then in your script try loading like this:

Set HidePrefix='~';

MyColors:

LOAD

  RGB(Red,Green,Blue) as [~Colors]

FROM

File

(ooxml, embedded labels, table is Sheet1);

Then in your dashboard, set the colors of the objects you want to change so they equal the selection made in the color table.  When you are changing customers all you have to do is select the new color and all your objects will change.  Obviously, this is a very simple example, but it should help you get started.