Questions tagged [grid]

NOT FOR CSS GRID LAYOUT. Instead use [css-grid]. This tag is ambiguous, please don't use it. For row-column layouts, use [grid-layout]. For the HPC setup, use [grid-computing]. For the R plotting package, use [r-grid]. For multi-dimensional data, use [matrix] or [array] or [raster]. For WPF-Grid control, use [wpfgrid]

In computing grid typically refers to either , or , or the plotting package , or multidimensional data //.

A is a layout which divides a specified area into a defined number of rows and columns. Visually it closely resembles a table with the key distinction being a table layout should be associated with data firstly, whereas a grid layout can include various types of content. A grid is a structure (usually two-dimensional) made up of a series of intersecting straight (vertical, horizontal, and angular) or curved guide lines used to structure content. A grid can be used to organize graphic elements in relation to a page, in relation to other graphic elements on the page or in relation to other parts of the same graphic element or shape.

(aka "Grid"), is a two-dimensional grid-based layout system that aims to do nothing less than completely change the way we design grid-based user interfaces. CSS has always been used to lay out our web pages, but it's never done a very good job of it. First, we used tables, then floats, positioning and inline-block, but all of these methods were essentially hacks and left out a lot of important functionality (vertical centering, for instance). Flexbox helped out, but it's intended for simpler one-dimensional layouts, not complex two-dimensional ones (Flexbox and Grid actually work very well together). Grid is the very first CSS module created specifically to solve the layout problems we've all been hacking our way around for as long as we've been making websites.

is the collection of computer resources from multiple locations to reach a common goal. The grid can be thought of as a distributed system with non-interactive workloads that involve a large number of files. What distinguishes grid computing from conventional high performance computing systems such as cluster computing is that grids tend to be more loosely coupled, heterogeneous, and geographically dispersed. Although a single grid can be dedicated to a particular application, commonly a grid is used for a variety of purposes.

is a low-level plotting package for .

and refer to 2-dimensional and multi-dimensional rectangular data structures.

is a 2-dimensional array of pixels.

11913 questions
2
votes
2 answers

Windows Phone7 How to Play 3gp video?

I am using this code, String video="http://bitcast-in.bitgravity.com/divum/espn/j2me/260811_Nojo-does-a-Maria.3gp"; mediaplayer.Source = new Uri(video); mediaplayer.Play(); In layout: video is not…
Jeeva
  • 1,166
  • 4
  • 18
  • 39
2
votes
1 answer

Pyplot grid with different linewidths

i want to show a grid with different linewidths with pyplot, here is the context: Cells do not communicate with each other. They are separated by walls of different thicknesses (there are 5 different wall thicknesses).I want it to look like…
2
votes
0 answers

Distribute text across grid columns equally

I want to achieve the following grid layout: Each column contains an image, whereas the middle one has as col span of 2. All the text belongs together, i.e. I want to distribute it equally across all columns. As every column should start with an…
2
votes
1 answer

writing a grid that has both column and row virtualization

I need to write an excel-like grid that can have a lot of cells (400x400). All columns have the same width and all rows the same height. Each cell can contain text or be empty and each cell can have a column and/or row span. I suppose this will…
bitbonk
  • 48,890
  • 37
  • 186
  • 278
2
votes
1 answer

What is the exact axis value of a grid tick location?

I cannot figure out a precise value of a tick location because I do not know how the scale works. For example, in the following scenario: > dput(df_partial_2) structure(list(v = 8:400, Tv_partial = c(7.98105946849764, 8.73878705524418,…
J.Z.
  • 415
  • 2
  • 11
2
votes
1 answer

With Next 13, how do you display images in a grid with the same width and height despite having various dimensions?

In Next 12, my blog has a component that fits images to have the same dimensions
Pavel Fedotov
  • 748
  • 1
  • 7
  • 29
2
votes
1 answer

Telerik Grid ServerTemplate problem

I'm trying to set up a Master/Detail grid using the Grid control from Telerik's Extensions for ASP.NET MVC. My problem is setting up the server template. The demo I'm following is the first one on this page, except I'm using Razor View Engine. I…
splatto
  • 3,159
  • 6
  • 36
  • 69
2
votes
0 answers

flexbox 2 column positioning

Is it possible to position items in a flexbox like this? I've tried flex-flow: column wrap, but it'll require fixed height. Which isn't available for this case. Any other way other than flexbox? Any idea or direction will be really appreciated. I…
DtyCFx
  • 61
  • 1
  • 8
2
votes
1 answer

Grid generator with custom metrics

What grid generators are available that lets me customize the type of metric used? More concretely I'm displaying HTML both on screen and via a PDF generator. Because of this I would like a stylesheet based on pixels for screens and a stylesheet…
c0dem4gnetic
  • 932
  • 1
  • 7
  • 24
2
votes
1 answer

Drawing a grid with a different color for each edge in python

It's all in the title. I'm trying to plot a grid in python, with a specific color for each edge. Here is a view of what I would like to obtain, made from tikz. The tikz code gives me a roadmap for how to proceed in python: I just run two loops of…
2
votes
1 answer

Grid RowDefinitions heights not working inside of ScrollView

I need to define a grid with proportional heights and widths so I have the following code:
2
votes
2 answers

How to skip columns in row in grid layout

Actually I was trying to use the w3schools code to create a grid layout and below is my code .grid-container { display: grid; grid-template-columns: auto auto auto; background-color: #2196F3; padding: 10px; } .grid-item { …
John
  • 72
  • 6
2
votes
5 answers

Reading Grib2 files for lat/long data

Anybody here doing meteorological or earth-sciences work? I am trying to work with GRIB2 format data files. There are libraries available, in particular the Unidata GRIB Java Decoder. And I can see exactly how to extract data in a big linear array,…
Rick Wayne
  • 1,503
  • 2
  • 12
  • 11
2
votes
1 answer

enable disable the allow add new row on a child template of a telerik grid

Does anyone know if it is possible to programatically enable or disable the add new row feature of the telerik grid in a child template ? I have a series of rows and a child template for each row. For some rows I want the user to be able to perform…
Erion
  • 644
  • 1
  • 6
  • 19
2
votes
0 answers

Why a component moves up and overlaps another component in mobile view in React? But it is ok in min-tablet and desktop view. Why?

I am learning React and trying to build single page portfolio . When I tried to list my projects using grid, the problem ocurred. Is there any grid property to solve this problem. I am tired of trying. This is my jsx: const Project = () => { …