Questions tagged [horizontal-line]

98 questions
16
votes
6 answers

How to add a x-axis line to a figure? (matlab)

I want to add a x-axis line at 0 to a Matlab figure so that I can compare my data to see if it is positive or negative when saving the figures to a jpg. What is the best way to do this? I know you can use line() but it just seems cumbersome…
O_O
  • 4,397
  • 18
  • 54
  • 69
16
votes
3 answers

Does bootstrap 5 have a built-in horizontal line?

I'm looking for styled or colored horizontal lines, preferably with success, primary, warning classes. A similar concept to colored links. I couldn't find this topic on Bootstrap's website. I found a few working solutions referring to Bootstrap…
Codewife_101
  • 357
  • 1
  • 4
  • 19
14
votes
1 answer

How to insert a horizontal line in a README.md file

I am trying to insert a horizontal line in a README.md file and I don't know how to.
Alexander Bolte
  • 531
  • 4
  • 10
12
votes
4 answers

Custom
with image/character in the center

I'd like to recreate this horizontal rule: I have the double lines, but I'm not sure how to go about getting some kind of a character or image in the center. I'm thinking I might be able to use :before and :after, but I don't know how to utilize…
Jon
  • 3,154
  • 13
  • 53
  • 96
6
votes
1 answer

Plot Percentile Indication in R / GGPLOT2

I have a basic plot of a two column data frame (x = "Periods" and y = "Range"). library (ggplot2) qplot (Periods, Range, data=twocoltest, color=Periods, size = 3,) + geom_jitter(position=position_jitter(width=0.2)) I am trying to add a horizontal…
Gratalis
  • 63
  • 1
  • 3
5
votes
1 answer

horizontal line css problem with ie 9 ,
color style not work in ie 9

why the below html code does not work in ie 9:
how can i fix this ?
SilverLight
  • 19,668
  • 65
  • 192
  • 300
5
votes
2 answers

Vertical or horizontal rule in Vaadin Flow

I want to section off one area of a layout from another visually in my Vaadin Flow layout using the Java API. I want something like the hr horizontal rule found in HTML. I would also want the equivalent, a vertical rule (which was never defined in…
Basil Bourque
  • 303,325
  • 100
  • 852
  • 1,154
3
votes
1 answer

Can I add a horizontal bar to a table of contents in Sphinx?

I'm developing documentation in Sphinx, and would like to separate sections in my table of contents using horizontal bars. I often see this in menus: Is there a way to do it in sphinx?
Abe
  • 22,738
  • 26
  • 82
  • 111
3
votes
3 answers

NodeJS simple horizontal line on console.log

I'm making a simple Node JS app. It logs a lots of informations on console. I would like to know if it's possible to add a horizontal lines in Node JS command line without using any extra packages or dependencies. If command prompt supports HTML…
user9850863
  • 93
  • 1
  • 6
3
votes
1 answer

How to shade a region under a horizontal line transparently using ggplot2?

This is the original image. This is the code i used to produce the above image. ## Employees Wise Sales Report: MAY 2014-LYNDA Best Visualization…
Veeramani Natarajan
  • 192
  • 2
  • 4
  • 11
3
votes
1 answer

Svg horizontal line does not appear in chrome with particular zoom level

I have created a bar graph using svg. There are few horiztonal rulers which are basically svg line with black stroke. Issue is as below The horizontal rulers disappear when zoom is 75% or 25%. The horizontal rulers dont disappear in other…
wallop
  • 2,510
  • 1
  • 22
  • 39
3
votes
4 answers

Spacing before a HTML Horizontal Line

I was setting up some signatures in HTML which will end up in Outlook. One issue I have is that when inserting a horizontal line, it inserts a large space above and a smaller space below the line. My issue is the very large space above the…
Untalented
  • 57
  • 1
  • 3
  • 7
3
votes
3 answers

TinyMCE displays lines across the editor after scrolling

I am having an issue with the TinyMCE editor. The editor contains a large amount of content and when scrolling vertically many horizontal lines are displayed across the editor obscuring the content. While this is most obvious when there is a lot of…
James
  • 983
  • 1
  • 9
  • 17
2
votes
0 answers

Label position in TradingView using Pine Script

How to make a label always stick to the right end of the screen even when we drag the chart to the left. Simply I need it to behave exactly like the label of the built in Horizontal line tool. Thanks
2
votes
2 answers

Is there a way to plot multiple horizontal lines using hlines() function in a single plot of matplotlib?

I have an pm2_5 dataframe data which I've plotted using a matplotlib scatterplot. I want to insert multiple horizontal lines at different y-values, I'm doing it by manually calling the '''ax.axhline''' function for each different value of y. Is…
1
2 3 4 5 6 7