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 .

237 questions
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
  • 2,082
  • 4
  • 30
  • 53
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
2
votes
2 answers

Special Gridline Style for Only One Column

How would I set a custom grid line style on just one column of a DataGrid? In particular, I'd like one column to have a double line as its left border. Example: | Col1 | Col2 || Col3 (w/ Double Left Border) | Thank you, Ben
Ben Gribaudo
  • 5,057
  • 1
  • 40
  • 75
2
votes
1 answer

How to color 3D gridlines

I was looking for a way to change the color of a 3D plots gridlines and was unable to find a clean and easy way to do so. The only answer I found was here and it came off as a bit complex. I was wondering if there was an easier way to color the…
Austin Russell
  • 417
  • 4
  • 17
2
votes
2 answers

Adding gridlines to Excel VBA userforms

Is there a way to add gridlines and snap objects to gridlines in an Excel VBA Userform? I am generating a UserForm in Excel VBA with numerous textboxes and labels. Aligning them, even with the auto-align and grouping tools is quite tedious and…
Paul NoCal
  • 57
  • 1
  • 1
  • 7
2
votes
1 answer

Change HorizontalGridLinesBrush only for selected Row

In a WPF ´DataGrid´ the Color of the Horizontal Grid Line can be modified by the HorizontalGridLinesBrush Property. Some Items have a boolean Property set to true so I want to highlight them with the Horizontal Grid Line Brush set to another…
Johannes Wanzek
  • 2,825
  • 2
  • 29
  • 47
2
votes
1 answer

How to isolate grid lines on top of a curve Mathematica

I am looking to plot a graph which has a semi circle from -3 to 3 on the x axis and 0 to 3 on the y axis. I would like for the semi circle and its interior to be untouched but the rest of the graph be filled with grid lines (with a point with…
2
votes
3 answers

showing gridlines with QTreeView

I am using a QTreeView with a custom delegate and i subclassed QAbstractItemModel. I would like to see gridlines for items without children. At first display, everything’s looks fine but whenever the mouse hovers over an item, the bottom or top line…
IbliSS
  • 25
  • 1
  • 7
2
votes
2 answers

How to display gridLines in GridView

For some reason my grid lines are not showing when I open the gridview in IE or Chrome. I set the gridLines property to Both already.
user3339242
  • 631
  • 2
  • 15
  • 32
2
votes
0 answers

Grid lines appearing on top of 3d bar plot in matplotlib in Qt?

I've got a program built that successfully creates properly formatted 3D histograms based on input data when outputting directly to Matplotlib. However, when I recently tried to take the same code and output to a MatplotlibWidget inside of Qt…
Aaron
  • 41
  • 5
2
votes
1 answer

Custom Horizontal Gridlines With Google Visualization API

Is it possible to add horizontal gridlines at irregular intervals to a Google Visualization ColumnChart? Something similar to the Good, Better, Best markers on this image chart: I have tried to figure it out myself, but have only found ways to add…
Jargs
  • 675
  • 3
  • 10
  • 22
2
votes
0 answers

Grid and ungrid plot using R and tcltk

I plot data in a tcl tk window like this. a <- tktoplevel() b <- tkrplot(a, function()plot(cars, col="red")) tkpack(b) In my window, I use check button to put or remove grid to the plot. require(tcltk) require(tkrplot) a <- tktoplevel() tkbind(a,…
David
  • 4,785
  • 7
  • 39
  • 63
2
votes
2 answers

Excel: How can I add custom gridline to a chart?

How can I add a custom horizontal line that has a label and it is at the exact same level as the first column in the chart (see the screenshot below). Can this be done in VBA?
Eduard Florinescu
  • 16,747
  • 28
  • 113
  • 179
2
votes
1 answer

Hide matrix Gridlines SQL Server Reporting Services 2005

I am creating a report using SQL Server Reporting Services in Visual Studio 2005 (SSRS). I have placed a matrix in a list. The data and the matrix are working fine. However I can't seem to find a way to hide the matrix grid lines at runtime. Also, I…
TMM
  • 483
  • 1
  • 9
  • 18
2
votes
2 answers

GridLines Color in IE and FF

I have gridlines set to true on a gridview, i want the lines to be grey. By default, the lines in IE appear grey, due to my stylesheets; but in Firefox, there is a dark line separating the header columns. I have tried adding …
user131990
  • 31
  • 3