Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
heik
Contributor
Contributor

Custom Extension: Overlap & Hide

Good afternoon,

I am developing a custom extension but I can't find documentation to allow overlap in edit mode.

 

Can anyone assist?

Labels (2)
1 Reply
nhenckel
Luminary
Luminary

 

For hiding or customizing a visualization's appearance in edit mode, you can utilize CSS in your custom extension. I recently worked on a project where I "hid" parts of the visualization UI in edit mode using the following CSS:

.qv-object-[your-extension-id] .qv-inner-object {
  background: transparent !important;
}

.qv-object-[your-extension-id] {
  border: none !important;
}

.qv-object-[your-extension-id].qv-mode-edit .qv-inner-object {
  background: rgb(35, 108, 255) !important; /* Highlighting in edit mode */
}

Replace [your-extension-id] with the actual ID of your custom extension. The .qv-mode-edit class specifically targets edit mode, allowing you to modify the UI only when the user is editing.

In terms of enabling "overlap" in edit mode, I haven't come across a direct way to do this yet, but I'd be equally curious to learn if there's a method to achieve overlap within Qlik extensions.

I hope this helps for now! Let me know if you need further clarification or help on the CSS side.