Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi @zagahmadi,
When you click on View Data the rendered HTML code of the chart changes so you have to locate the element that you would like to change based on the new HTML.
This is an example of View Data of a Table chart:
This is the regular view of the chart:
And this is the View Data formatted - I made the text red:
This is the CSS code I have injected in the Multi-KPI chart to make the magic.
[data-testid="table-container"] span {
color: #FF0000 !important;
}
Please let me know if that helped you.
Regards
Mark Costa
Read more at Data Voyagers - datavoyagers.net
Follow me on my LinkedIn | Know IPC Global at ipc-global.com
Hi @zagahmadi,
When you click on View Data the rendered HTML code of the chart changes so you have to locate the element that you would like to change based on the new HTML.
This is an example of View Data of a Table chart:
This is the regular view of the chart:
And this is the View Data formatted - I made the text red:
This is the CSS code I have injected in the Multi-KPI chart to make the magic.
[data-testid="table-container"] span {
color: #FF0000 !important;
}
Please let me know if that helped you.
Regards
Mark Costa
Read more at Data Voyagers - datavoyagers.net
Follow me on my LinkedIn | Know IPC Global at ipc-global.com
Outstanding, Worked like charm. Thanks so much!