Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
jayaseelan
Creator III
Creator III

Need to Change Table column Title colour

HI everyone,

                I need to change the Column Title colour. Is that possible? I attached my Screen short below. The Required output is COUNTRY and SALE Should Shows in different colour.

1 Solution

Accepted Solutions
mgranillo
Specialist
Specialist

Miguel,

In 3.0 widgets can be created that alter the look of visuals using HTML and CSS.

Here is a sample:

2016-07-06 07_45_30-Widget editor _ Dev Hub.jpg

This is accessible through the Dev Hub widget editor.

Instructions for how I did this is here: Re: How to change Font Size in Qlik Sense?

View solution in original post

18 Replies
Uday_Pasupuleti
Partner - Creator III
Partner - Creator III

HI,

I can't change the title color.

But you can change the content color.

Thanks,

miguelbraga
Partner - Specialist III
Partner - Specialist III

Hi there,

You can't do what you require nor solve your issue by using only the tools provided by Qlik Sense, sorry .

Regards,

MB

jayaseelan
Creator III
Creator III
Author

Exactly i need to change the Title colour. Can you explain me the procedure.

Uday_Pasupuleti
Partner - Creator III
Partner - Creator III

Do you want to change the color of the data in the columns?

Or

Do you want to change the column name color? If you want to do this you can't.

But you can change the color of the data inside those columns. You can either change the background color or you can change the text color.

Thanks,

mgranillo
Specialist
Specialist

Miguel,

In 3.0 widgets can be created that alter the look of visuals using HTML and CSS.

Here is a sample:

2016-07-06 07_45_30-Widget editor _ Dev Hub.jpg

This is accessible through the Dev Hub widget editor.

Instructions for how I did this is here: Re: How to change Font Size in Qlik Sense?

jayaseelan
Creator III
Creator III
Author

Hi Michael,

               Thanks for your reply, this what is expected.. where i should write this HTML Code?

mgranillo
Specialist
Specialist

This is only availabe in Qik Sense 3.0.  If you have 3.0, you'll need to go into the Dev Hub's Widget Editor.  Create a new library if you don't have one.  You'll enter the widget editor.  Click insert on the top of the HTML window editor.  In the list you'll see "table created base on dimensions and measures". Click that and you'll see some html code get generated.  Then on the right hand side window pane, edit the available components to include "Data" (edit button is the pencil on the bottom).  Here's some CSS to get you started

#columnheaders {

    font-weight: normal;

    color: blue;

    text-align: left;

    font-size: 40px;

}

You'll need to set the ID of your first html <tr> tag to columnheaders: <tr id="columnheaders">

jayaseelan
Creator III
Creator III
Author

Thank you so much Can please share the screen short???

mgranillo
Specialist
Specialist

2016-07-06 08_56_21-Start page _ Dev Hub.jpg2016-07-06 08_56_40-Widget editor _ Dev Hub.jpg2016-07-06 08_57_38-Widget editor _ Dev Hub.jpg