Questions tagged [gridlines]

Gridlines are the lines that divide rows and columns in a grid layout, or guide lines in a plot.

Gridlines are the lines that divide rows and columns in a , or guide lines in a .

203 questions
3
votes
2 answers

JTable grid lines disappear unexpectedly

I have an S (very S) SCCE which illustrates the problem: there is a JTable and a JTree both contained in a JPanel with a BorderLayout. Most of the grid lines in the JTable show, but not the one at the left, and not the one at the top. Have tried…
mike rodent
  • 10,479
  • 10
  • 80
  • 104
3
votes
1 answer

Vertical gridlines in ggplot with discrete x-axis

I have the following setup: emp <- structure(list(s = structure(c(1L, 2L, 2L, 2L, 7L, 7L, 3L, 4L, 4L, 4L, 4L, 8L, 8L, 8L, 9L, 9L, 9L, 9L, 10L, 5L, 5L, 6L), .Label = c("8", "24", "31", "78", "135", "142", "30", "98", "117", "123"), class = "factor",…
Christopher DuBois
  • 38,442
  • 23
  • 68
  • 91
3
votes
1 answer

How to set Gridlines to a GridView in Android

I am using GridView to show a summary report of 3 columns in my app. EveryThing seems to work fine except the GridLines for Gridview is missing. Can anyone please suggest how to display GridLines for GridView and even Headers. Thanks.
Mahe
  • 2,647
  • 13
  • 47
  • 68
3
votes
2 answers

How to disable gridlines in Excel using open xml C#?

I want to disable GridLines in excel and put custom borders to excel cells using open xml in C# I have tried with below code but is throwing exception when i open the excell, the exception is "Repaired Part: /xl/worksheets/sheet.xml part with XML…
Raj
  • 31
  • 1
  • 4
3
votes
1 answer

In android how to bring gridlines in gridview

After searching out a lot i could able to find the solution of my problem that in Android how can i make gridlines visible in my gridview....as it seems simple but i still couldn't resolve the problem do suggest some useful suggestion to make…
Vivek Singh
  • 1,150
  • 2
  • 16
  • 39
3
votes
1 answer

Vertical gridlines in a ListView

I've got a WPF ListView that I'm using as a GridView. Is there any way I can get vertical gridlines in there? The ListView has a MinHeight specified, so I'd like the GridLine to go all the way to the bottom of the grid, so it'll fill the empty…
Jim B
  • 7,736
  • 10
  • 46
  • 75
2
votes
2 answers

Exclude grid lines from boundaries of plot in python?

I am looking for a way to remove grid lines from the axes of a plot, but unfortunately, I've not come up to a solution for this issue and neither found it anywhere else. Is there a way to remove certain grid lines or choose which grid lines to plot…
Felix
  • 45
  • 5
2
votes
1 answer

chart.js how to show tick marks but hide gridlines

I"m creating a chart using chart.js with two y axes. One y axis has gridlines and the other doesn't have gridlines (if they both have gridlines, they overlap and it looks bad). Porblem is, when I turn off gridlines, it also seems to turn off the…
Normajean
  • 549
  • 2
  • 4
  • 15
2
votes
2 answers

How to make dashed grid lines intersect making crosshairs in gnuplot?

I'm plotting some data and I want to use dashed grid lines. Any dashed grid line would suffice, but I prefer a "long dash, short dash, long dash" format. For example, given the following code set grid lc rgb "#000000" lt 1 dt (50, 25, 20, 25) plot…
texdditor
  • 75
  • 1
  • 7
2
votes
2 answers

Reduce number of gridlines in plotly scatter plots with log scale in R shiny

I've build the following test app where I solve the issue to get the tick labels as scientific annotation, but I would now like to reduce the number of grid lines to only be placed at the "main" ticks, i.e. the ones that have a text label. This…
Mark
  • 2,431
  • 16
  • 52
2
votes
1 answer

custom color gridLine echarts

its possible customize color of the gridLine in eCharts? I want to custom the color of horizontal white line
Medina
  • 27
  • 4
2
votes
1 answer

datagridview visible gridlines even without data c#

I have a datagridview that displays data but the data displayed doesn't fill the whole datagridview that the gray background of datagridview shows. what I want to happen is to show gridlines of the datagridview even with out data in each…
2
votes
0 answers

Add graticule to projected maps in R

How can I add a graticule to a the map ras below: library(sf) library(raster) library(rgdal) library(rasterVis) library(graticule) ## Only needed for downloading a raster example rr <- getData('alt', country='CAN', mask=TRUE) ## Here is where the…
code123
  • 1,814
  • 3
  • 27
  • 47
2
votes
1 answer

Control the length of major grid lines - ggplot2

Is there a solution to control the length of major grid lines in ggplot2? I have a plot here where I'd like the major grid lines to appear on the left of the zero line (just negative values). So for bar "a", only a small portion of the grid line…
Flammulation
  • 307
  • 2
  • 14
2
votes
0 answers

Last y-axis tick gridline not showing with chart title displayed

I'm making a stacked bar graph using Chart.js, with (total stacked) values ranging from 0 to 1 (displayed as 0-100%). I'd like to have a tick/gridline displayed every 0.20/20%, from 0 to and including 1/100%. Right now, my chart will display the…
Amy Chen
  • 21
  • 4