widget-tutorial
Version:
A comprehensive tutorial + recipes to get started with widgets in Qlik Sense.
23 lines (21 loc) • 355 B
HTML
<style>.my-class {
font-size: 20px;
background-color:#efefef;
padding: 10px;
}
.hello-world {
font-weight:bold;
}
.my-prop {
color: darkgray;
font-weight: normal;
}</style>
<div><div class="my-class">
<div class="hello-world">
Hello, this is my widget:
</div>
<div class="my-prop">
This is the title: {{settings.title}}
</div>
</div>
</div>