Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi guys, I have a situation where the theme i made for a dashboard in Qlik sense, is not translating at all into the same graphs in Mashups. Any idea why that is?
First image, colors in Qlik Sense
Second image, colors in Mashups
Any help would be appreciated.
are you apply theming your mashup code? you can need to do that as it doesnt take automatically. if you have created mashup using Capability APIs then you can use below code.
qlik.theme.apply('my-theme-id').then(function(result){console.log('theme applied with result: ' + result); });
Hi @SantiagoAguilar,
It is about theme setting probably. Mashup gets default theme option. If you have special theme, you may not see in mashup.
You can reach to following screenshot by right click>Share>embed.
i hope it works.
Hi @yunus_emre I tried that first, but all graphs had the custom theme set in there aswell.
are you apply theming your mashup code? you can need to do that as it doesnt take automatically. if you have created mashup using Capability APIs then you can use below code.
qlik.theme.apply('my-theme-id').then(function(result){console.log('theme applied with result: ' + result); });
Hi! Here was the solution, i was using the API, but i was not using it after the OpenApp, so i revised the JS code and just moving that was the solution, silly me.
Thank you.