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
45
votes
3 answers

HTML / CSS table with GRIDLINES

how do I display the gridlines in a HTML table? (am using IE6)
Allan Bowe
  • 11,461
  • 18
  • 65
  • 114
31
votes
1 answer

wpf gridlines - changing style

Is there any way to change the style of gridlines in wpf grid? I need to divide grid into 4 cells. To do it I used RowDefinitions and ColumnDefinitions. However I need user to distinguish which cell is which, that's why I need to change the color of…
wpfnewbie
  • 311
  • 1
  • 3
  • 4
28
votes
4 answers

Grid line consistent with ticks on axis

I am embarrassed to ask this simple question, but has been in kicking my mind for several days whenever I create a plot: plot (x = 1:10, y = rnorm (10, 5, 2)) grid (10,10, lty = 6, col = "cornsilk2") I want to position the grids right at where axis…
jon
  • 10,536
  • 18
  • 74
  • 127
11
votes
5 answers

Clean gridPane in JavaFX and maintain the Grid line

I'm trying to make a simple game (it is a school work) in JavaFX and I am trying to clear the panel with the board, and then just repaint it. I have tried a lot of methods, and this one is the only one I found that removes all the pieces of the…
aliasbody
  • 726
  • 3
  • 9
  • 24
11
votes
2 answers

Google Chart Setting Gridline Color

I'm trying to set the color of the gridlines in the background of my Graph using Google Charts. I've got this code for setting the options of the chart: ac.draw(activityData, { title : 'Monthly Coffee Production by Country', isStacked:…
Luke
  • 19,970
  • 26
  • 98
  • 180
10
votes
2 answers

How to hide grid lines in JTable

I'm trying to hide the grid lines of a JTable but with no results. Even trying to change the color of the grid lines does not work. Here is my code: // build the table tableView = new JTable(ttm); //Specifify the selection Listener and…
AlejandroVK
  • 6,905
  • 11
  • 43
  • 68
9
votes
2 answers

Major and minor graticule for maps?

I have created the following map, which has a uniform gray grid with 1° intervals both for meridians and parallels: I would also like to have the meridians and parallels thicker and in black for every 5° interval (while keeping the 1° grid), so…
codeaviator
  • 2,365
  • 13
  • 35
8
votes
2 answers

GridLine on top of a Bar Chart in Mathematica

Is it possible to get a GridLine over a BartChart ? Gridlines draw it under and Mesh does not seem to work with BarChart. BarChart[{Range[10], Range[10]}, ChartLayout -> "Stacked", GridLines -> {None, {4}}, …
500
  • 6,249
  • 8
  • 40
  • 74
8
votes
4 answers

nvd3 line chart, how to remove gridlines and yaxis

I have made a line chart with view finder. Here is my initial code var chart = nv.models.lineWithFocusChart(); // chart.transitionDuration(500); chart.xAxis .tickFormat(d3.format(',g')); chart.xAxis .axisLabel("Date"); …
user3171919
  • 89
  • 1
  • 1
  • 7
7
votes
1 answer

How can I get a Google Visulization LineChart to display vertical gridlines?

I am using javascript to display a Google Visulization LineChart in my web application. How can I get it to display vertical gridlines? I've read about using chg to set them, but as far as I know that only applies when making the chart using the…
Anthony
  • 99
  • 6
6
votes
2 answers

Matplotlib: Change color of individual grid lines

I've only been using Python for about a month now, so I'm sorry if there's some simple solution to this that I overlooked. Basically I have a figure with 4 subplots, the 2 on the left show longitudinal plots and the ones on the right show scatter…
Sithis
  • 63
  • 1
  • 5
6
votes
2 answers

NSTableView get rid blank space separating columns

I have an NSTableView with 4 columns. I also have a custom background color for each row. The only problem is I have these ugly white spaces where the gridlines would go in both the horizontal and vertical axis. I have both unchecked in IB, but…
Matt S.
  • 12,487
  • 13
  • 71
  • 125
6
votes
1 answer

Create minor gridlines in ggplot2 for categorical data

I would like to add minor gridlines to categorical data on plot produced with ggplot2. For example, library("ggplot2") data<-data.frame(xcategory=rep(c("a","b","c"),each=30),…
Docuemada
  • 1,519
  • 2
  • 17
  • 37
6
votes
1 answer

Attractive 3D plot in R

I am writing a proposal and need a 3D plot something like this: but preferably more attractive. I need the size of each point to reflect the abundance of the species and an outline of the volume created by connecting the points. Sample…
Elizabeth
  • 5,771
  • 16
  • 57
  • 88
5
votes
1 answer

Removing an arbitrary gridline but maintaining respective tick mark in ggplot2

Let's say I have a plot generated by this code: library(ggplot2); ggplot(diamonds, aes(x=carat, y=price, color=cut)) + geom_point() I would like to remove an arbitrary horizontal (or vertical) gridline, perhaps v = 12500 or v = 15000 (or both). I…
Jacko
  • 51
  • 1
1
2 3
13 14