Questions tagged [overlapping]

Do not use this tag. The overlapping tag is used to describe elements on a webpage, absolutely positioned with CSS so they overlap each other.

The tag is used to describe elements on a webpage - absolutely positioned with CSS - so they overlap each other. Overlapping elements on a webpage can help highlight, prompt, and give priority to important content.

937 questions
6
votes
2 answers

Flot bar chart: bars overlapping on time axis issue

I am trying to plot expense data against time axis, and I see the data bars are overlapping if they are showing data for the same date. I was expecting the graph to show the bars asjascent to each other but that is not the case. See a sample of code…
Faiz
  • 5,331
  • 10
  • 45
  • 57
6
votes
3 answers

Show all lines in GenomicRange package output

I am working with GenomicRange R package. I have an input file like this: dvex108056 + 87 206 dvex108056 + 87 226 dvex108056 - 101 240 dvex108056 - 104 240 dvex108056 - 59 188 dvex108056 - 68 197 dvex108056 - 70 208 dvex108056 - 75 211 dvex108056 -…
6
votes
3 answers

Why am I failing to overlap data transfers and computation with GTX 480 and CUDA 5?

I have tried to overlap kernel executions with memcpyasync but it doesn't work. I follow all recommendations in programming guide, using pinned memory, different streams, etc. I see kernel execution do overlap but it doesn't with mem transfers. I…
Dredok
  • 807
  • 1
  • 9
  • 30
5
votes
0 answers

How to reproduce the same logical reasoning about overlapping contours on a triplot joint distribution

I have the following figure whose I want to apply the same logical reasoning for plotting all the contour and content of different ellipses (identified by a color). In this example, there are 4 matrices plotted instead in my case below, I have 5…
user1773603
5
votes
2 answers

Collapsing Toolbar Layout and Constraint Layout

I am struggling to create collapsing image header alongside Constraint where my design looks like this Currently the profile pic is a part of the ConstraintLayout because it needs Guideline constraints and unfortunately it is overlapped by the…
5
votes
1 answer

Overlapped elements with onclick event

Here is the deal: The dark square has a onclick event attached The red square, which overlaps the dark square, also have its own onclick event. When I click the red square, I'd like only the red square's onclick event to be fired. When I click the…
AlexB
  • 7,302
  • 12
  • 56
  • 74
5
votes
1 answer

How to do word break in Ascii Doc?

I am writing documentation in Ascii Doc style (AsciiDocFX GUI, but I suppose it is invalid to topic) and I am having a problem. When I create a table and then input a long word with no spaces inside of cell, the word is not split into multiple…
Zdeno Pavlik
  • 728
  • 6
  • 15
5
votes
2 answers

how to make an image large enough to avoid tick label overlapping?

Assume that the data X has size 1000 *1000. X is displayed using the command: imagesc(X); and all the rows are labeld using: set(gca, 'YTickLabel', somelabels); Although the data X are properly polotted and the Ytick labels are also shown, the…
Causality
  • 1,123
  • 1
  • 16
  • 28
5
votes
3 answers

SQL Server - cumulative sum on overlapping data - getting date that sum reaches a given value

In our company, our clients perform various activities that we log in different tables - Interview attendance, Course Attendance, and other general activities. I have a database view that unions data from all of these tables giving us the…
Brian
  • 101
  • 9
5
votes
3 answers

Touching segments

Can anyone please suggest me algorithm for this. You are given starting and the ending points of N segments over the x-axis. How many of these segments can be touched, even on their edges, by exactly two lines perpendicular to them? Sample Input…
inquisitive
  • 3,738
  • 6
  • 30
  • 56
5
votes
2 answers

Overlapping face detection in OpenCV

First let me give some information about what I'm trying to do. I'm working on a face verification problem using profile faces, and my first step is face detection. I'm using OpenCV face detector with 'haarcascade_profileface.xml'. The problem is,…
guneykayim
  • 5,210
  • 2
  • 29
  • 61
5
votes
2 answers

How do I keep my winforms controls from overlapping when I expand the application?

I have a pretty simple winforms application. It contains a rich edit box, embedded browser, progress bar, a few buttons etc. I have the anchors on the controls set to expand in all directions. When expanding up and down, however, the controls will…
Jason
  • 463
  • 1
  • 11
  • 25
4
votes
1 answer

Merging intervals with MySQL

I need some help with merging of overlapping intervals. I have this table: id start end 1 15:30:00 16:20:00 2 10:00:00 13:00:00 3 15:00:00 16:09:00 4 11:00:00 14:00:00 5 16:20:00 16:30:00 SQL: CREATE TABLE…
4
votes
4 answers

Text wrapping issue in generated pdf file

I have an issue related to wrapping of text in pdf format. For all the formats like xls,rtf, and pptx the report works fine,however in pdf some text gets wrapped i.e. some letters of the text especially the last few letters gets printed in the next…
Abhinash
  • 263
  • 3
  • 8
  • 14
4
votes
1 answer

Merge overlapping datetime intervals

I have a df with multiple datetime intervals (start time, end time) and values. input: id start end value 1 08:00:00.000 12:00:00.000 5 2 09:00:00.000 10:00:00.000 6 2 10:00:00.000 14:00:00.000 4 1 …
NCall
  • 113
  • 6
1 2
3
62 63