Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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.
Miguel,
In 3.0 widgets can be created that alter the look of visuals using HTML and CSS.
Here is a sample:
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?
HI,
I can't change the title color.
But you can change the content color.
Thanks,
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
Exactly i need to change the Title colour. Can you explain me the procedure.
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,
Miguel,
In 3.0 widgets can be created that alter the look of visuals using HTML and CSS.
Here is a sample:
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?
Hi Michael,
Thanks for your reply, this what is expected.. where i should write this HTML Code?
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">
Thank you so much Can please share the screen short???