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
4
votes
2 answers

Remove grid line in tableView

I am trying to remove the grid line inside table view of each cell using css. For example, between the Name and Description column, there is a line which I assumed that it is grid line. I have no idea to remove it using css. I can do it in Java…
user2424370
4
votes
2 answers

Axis plotting in python - matplotlib

I currently have a plot for my data, with a vertical line in red marking the point where "average number of spins" is. I was wondering if is possible to change the marker for the points for "millionspins,millions" into a blue/black thin cross, and…
joe oxley
  • 73
  • 3
4
votes
5 answers

Listview gridlines issue

There's a problem with drawing gridlines in listview with common controls 6. It happens when I try to scroll the list page down or page up with mouse. (source: rsdn.ru) . I was only able to find this discussion…
Fedor
  • 42,643
  • 9
  • 75
  • 86
4
votes
3 answers

R matrix plot with colour threshold and grid

my matrix consists of values between 0 and 100 and has the dimensions of 100 x 100. I basically want to plot this matrix but colour all values above 50 in e.g. red and below in e.g. blue. On top of that I'd like to add a nice grayisch grid like they…
user969113
  • 2,113
  • 6
  • 41
  • 48
3
votes
1 answer

ASP.NET Chart StripLine over the GridLine

I have a Chart control with some columns and GridLines. I wanted to add a red StripLine at a specific location on the Chart to show that this is the acceptable level (or whatever). The problem is that the stripline is not showing because the…
Yousi
  • 795
  • 3
  • 9
  • 22
3
votes
1 answer

How can I get a Grid to draw Borders for blank cells?

I have an ItemsControl which uses a Grid as the ItemsPanelTemplate, and sets the Grid.Column and Grid.Row on the ItemContainerStyle to position data items in the grid Is there a way to either add GridLines to the Grid, or to fill in the blank cells…
Rachel
  • 122,023
  • 59
  • 287
  • 465
3
votes
2 answers

Polar plot - Put one grid line in bold

I am trying to make use the polar plot projection to make a radar chart. I would like to know how to put only one grid line in bold (while the others should remain standard). For my specific case, I would like to highlight the gridline associated to…
3
votes
2 answers

How can I omit the grid lines of empty cells in a list view?

How can I hide the grid lines separating empty cells from the adjacent cells in a TListView control? It would be like the HTML colspan table attribute, or Excel's "merge cells" command. I would like for cells with text in them to retain their normal…
Kermia
  • 3,963
  • 11
  • 56
  • 104
3
votes
3 answers

Google Visualization highlight single grid line

how can I highlight a single grid line? I would like to set an optical temperature limit at 35 ° C. Thanks! I have now added it to my code, but it does not work .... do you see my mistake? Or did I not understand something in your explanation? Here…
3
votes
2 answers

Adding a static gridline to a JFreeChart time series chart

I am trying to implement a timeseries chart with a peculiar requirement in JFreeChart. I can draw the chart, but I don't know how to implement the vertical red line at the last value in the chart. It should always be in the same spot and should…
Sevas
  • 4,005
  • 3
  • 23
  • 26
3
votes
1 answer

Aligning grid lines in R, bReeze package

I am trying to get grid lines work properly in the image below. Using the bReeze package to plot the power curves of the turbines with: library(bReeze) pc=pc("Vestas_V90_1.8MW.wtg") plot(pc) The output plot is: but assigning grid lines to the…
SamAct
  • 480
  • 4
  • 18
3
votes
1 answer

How can I add gridlines to one sheet and not the other (C# Excel Interop)?

Similar to some of the answers here, I turn gridlines in my Excel file off this way: private ApplicationClass _xlApp; . . . _xlApp = new ApplicationClass { UserControl = true }; _xlApp.ActiveWindow.DisplayGridlines = false; However, in my workbook,…
B. Clay Shannon
  • 1,055
  • 124
  • 399
  • 759
3
votes
1 answer

In matplotlib, Is there a way to set gridlines below bars/lines/patches while retaining ticklabels above?

Related to Matplotlib: draw grid lines behind other graph elements, but nothing there worked for me. I have the following plot where I want to hide the gridlines under the red line while retaining the labels on top of the red line: import numpy as…
joelostblom
  • 25,984
  • 12
  • 108
  • 120
3
votes
0 answers

How to make Grid lines visible in SWT Grid Layout?

I want to know how to make the Grid lines visible in SWT Grid Layout. I can arrange widgets in a grid layout. But now I want to make those grid lines visible. So then it would be just like a table. Is there any way to do that? Note-I don't want to…
Samitha Chathuranga
  • 1,536
  • 4
  • 25
  • 56
3
votes
1 answer

How can I make the abscissa (i.e. the grid line y=0) appear darker or bolder in ggplot2?

I have a line graph with some points with positive value, and others with negative value (I am plotting odds ratios). I would like to make the y=0 grid line appear darker or bolder so as to make the visuals more apparent. How can I do this with…
Chthonic Project
  • 7,687
  • 1
  • 39
  • 85
1 2
3
13 14