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
6
votes
1 answer

How do I align date and values to gridlines in Google Chart?

I'm using Google Chart in my application with the following code (JSFiddle): google.load('visualization', '1', {packages: ['corechart']}); google.setOnLoadCallback(drawChart); function drawChart() { var data = new…
OKIHOUSE
  • 113
  • 7
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.
  • 13,305
  • 15
  • 73
  • 129
6
votes
1 answer

Gridlines not showing up

I've set up the following code to read in a .graphml file, preform a calculation (eigenvalues) and then plot the results. Here is the code I have so far: import numpy as np import networkx as nx import matplotlib.pyplot as plt # Read in the…
user3708902
  • 161
  • 1
  • 2
  • 12
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,703
  • 2
  • 25
  • 44
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
  • 6,391
  • 17
  • 62
  • 90
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
  • 3
5
votes
1 answer

is it possible to display solid c3 grid lines via CSS instead of default dashed grid line?

is there a way to achieve solid c3 grid lines via css without explicitly declaring line values? Example: C3's basic Grid Line example var chart = c3.generate({ data: { columns: [ ['sample', 30, 200, 100, 400, 150, 250, 120,…
Seattler
  • 131
  • 8
5
votes
4 answers

Chart.js: Display only the horizontal gridline at zero index

How can I display the horizontal gridline present with zero value? I am currently using the following code: yAxes: [{ gridLines: { display: true, color: [ "rgba(0, 0, 0, 0.1)", "rgb(255, 255, 255)", …
Manish
  • 51
  • 1
  • 3
5
votes
1 answer

Add grid lines to minor breaks only (ggplot)

I was trying to make a chart as the below in ggplot. I wanted the y labels to show the entire set of values from 1 to 50 but I only wanted to generate horizontal gridlines every 10 numbers. I thought adding minor_breaks and then controlling the…
Sraffa
  • 1,658
  • 12
  • 27
5
votes
1 answer

How do I show virtual tree-view grid lines for nodes that don't exist yet?

I use SoftGem's VirtualStringTree in Delphi 7. Is there a way to enable full grid lines (just as in a TListView)? I can only find toShowHorzGridLines, which only shows lines for current nodes, not anything in the empty space below, and…
Ben
  • 3,380
  • 2
  • 44
  • 98
4
votes
2 answers

Theme manipulation in ggplot2: altering x and y grid lines

Is it possible to manipulate the spacing and size of dashed and dotted grid lines in ggplot using the themes? The following plot: p + l + opts(panel.grid.major = theme_line(colour = 'black', linetype = 'dashed'), panel.grid.minor =…
indigo
  • 1,067
  • 4
  • 15
  • 26
4
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
  • 130,264
  • 66
  • 304
  • 490
4
votes
1 answer

Is it possible to add black grid lines to python Altair Heatmap plots?

Is it possible to add Black Grid lines to an Altair Heatmap? I know that it is possible to add spacing between cells with scale.bandPaddingInner and I was thinking that maybe it would be possible to color that spacing with black? What I want is…
Alina V
  • 119
  • 5
4
votes
1 answer

Ggplot minor gridlines not showing when they coincide with (disabled) major gridlines

I created a graph plotting data by day of the year with an x-axis where the tick marks indicate the start of each month and the minor grid lines indicate the start of each week. I intentionally don't show the major grid lines on the x-axis, which…
user2363777
  • 947
  • 8
  • 18
4
votes
0 answers

How to remove gap between rows in MS Access Report

I have created an MS Access database. I've used a black border colour for the rows/records. In Report View, the report looks exactly as how I designed it in Design View and Layout View, but when I use Print Preview, there is a noticeable gap…
Kellin Strook
  • 487
  • 1
  • 5
  • 18
1
2
3
15 16