Overlays are user interface elements that are displayed over other UI elements, typically for the purpose of presenting additional or enhanced information and detail.
Questions tagged [overlay]
4798 questions
1
vote
0 answers
How to overlay contours which share violently different ranges using corner.py
I want to overlay six contours in one figure using fig=fig in corner.py.
Four of the contours share similar scales and ranges. Thus they can be overlayed smoothly with the same parameter ranges.
But the ranges and scales of the last two contours are…

JasmineLu
- 11
- 1
1
vote
1 answer
Plotly: How to make grouped bargraphs on top of each other?
This is a plotly question as I wish to have the interactive graph.
I am trying to make two sets of grouped bargraphs on top of each other in which one of the sets is not filled but with a thick line and the other set is filled.
This is my dummy…

francescab
- 35
- 4
1
vote
0 answers
Is it possible to make an overlay on a specific window with any python GUI library
I am making an app lock - type overlay on discord so that whenever it becomes the active window, the overlay should appear, I type password and the overlay disappears.
It is possible to do that with any python GUI library?
If yes, then How?
Also, is…

Sahaj Bhatt
- 25
- 7
1
vote
1 answer
Using overlay2 storage driver with an overlay filesystem
Goal
I'm running docker in a live CD and I want to cache the results of docker build, mostly, for when I reboot into this live CD. My idea was to set up an overlayfs in /var/lib/docker. So, I have the below in /etc/fstab:
overlay /var/lib/docker…

fuzzybear3965
- 243
- 5
- 15
1
vote
1 answer
Floating button that overlaps in all applications
I am learning flutter, and I found myself with the task of creating a floating button, that by minimizing the application the button is visible and overlaps any application, is it possible to create this functionality in flutter?

Kapp
- 11
- 2
1
vote
0 answers
error when using Angular CDK overlay not initialising correct and positioning correctly
I have a component I want to open when certain buttons are clicked, and closed when anywhere outside the component is closed. I decided I could use cdkOverlay for this, but I am not very familiar with it and I am have a hard time getting it to work…

solar apricot
- 353
- 2
- 5
- 24
1
vote
0 answers
overlaying bars in barchart android
I'm trying to create a bar chart using MP android bar chart.
I'm trying to create two entries in one xAxis.
But when I do the outcome will be like the following:
As you can see the orange one is overlaying the pink one.
I would like them to be side…

Ilan
- 45
- 3
1
vote
0 answers
Can not ping docker container in overlay network
I have 2 servers with docker installed.
I have successfully created a consul service.
I have create an overlay network with
docker network create -d overlay --subnet=172.27.31.0/24 --gateway=172.27.31.1 idmoverlay
I created a container with
docker…

Andreas Fuhrmann
- 11
- 1
1
vote
1 answer
My love/hate relationship with GeometryReader
I'm new to SwiftUI - not new to iOS development.
I have a lot of custom design/drawing to do and that seems particularly difficult in SwiftUI.
Please bear with me and prepare for a long one.
What's great about SwiftUI is that it's based on…

esbenr
- 1,356
- 1
- 11
- 34
1
vote
1 answer
Overlay Heatmap onto a contour map of different sizes
I want to overlay a heatmap onto a contour plot on plotly with python. The two images come from numpy arrays, and they are different sizes. I will need to overlay the second image at a particular spot on the contour plot, as well I will have to…

Daniel Turon
- 21
- 3
1
vote
1 answer
Showing Overlay Aligning to the Bottom
I want to lay a View over another when I tap a button.
The following is my code:
import SwiftUI
struct SheetView: View {
@State private var showSheet: Bool = false
var body: some View {
NavigationView {
VStack {
…
user17784435
1
vote
1 answer
How can I overlay a rounded shadow to a text, inside a button?
I would like to add a round-light glowing effect on a wide rectangular button, containing a certain text, on mouse over. I am trying to figure out how to use the box-shadow for this, but I think I should be able to achieve what I want by adding a…

Lorenzo Tusorella
- 13
- 3
1
vote
1 answer
Creating an animated graphics overlay with Python
I'd like to hear the best means for displaying graphics that move on-screen as an overlay with Python. The intended initial platform is Linux. I've worked up some small demos using PyQt using frameless windows and looping and updating their…

SleighBoy
- 501
- 3
- 12
1
vote
2 answers
Exclude edges from participating in the layout
Consider a graph like the one shown below:
I would like to be able to display/hide the red edges (forget that they are hand drawn) shown below when the user clicks a button or similar:
I don't want the red edges to participate in the layout but…

Chau
- 5,540
- 9
- 65
- 95
1
vote
1 answer
Multiple Overlays not working in react native iOS
I am using multiple overlays in my react native component. It is working great in android but in iOS my second overlay doesn't open when it is under my first overlay. When I move my second overlay over my first overlay my second overlay opens but…

Knevagi
- 157
- 1
- 1
- 13