grid

Grid lines in parasitic axes in matplotlib

Can you draw the grid lines in a plot with parasitic axes in matplotlib? I try this, based on the samples for grids and for parasitic axes, but grid drawing is not performed: from mpl_toolkits.axes_grid.parasite_axes import SubplotHost import matplotlib.pyplot as plt fig = plt.figure(1) host = SubplotHost(fig, 111) fig.add_subplot(ho...

how can i draw a line between two points on a grid in WPF

I have a grid with 100 columns and 100 rows. I want to draw a line between the centre of one of those grid squares and another, say 45,25 to 75,38. I am happy with being able to draw a line, but how can i find the x and y pos of the centre of the two grid squares? Or is there a better approach i have missed ...

Adobe Flex Flash Builder DataGrid dataProvider CollectionEvent.COLLECTION_CHANGE handler's access to DataGrid?

I've added an eventListener to the COLLECTION_CHANGE event that is fired when the grid is finished resorting the items in its dataProvider, after the user clicks on a column header: MyType (myDataGrid.dataProvider).addEventListener(CollectionEvent.COLLECTION_CHANGE, onDataGridResort); ... private function onDataGridResort(e:...

WPF share column width between separate grids

I have the following setup on my WPF UserControl: <GroupBox> <Grid> ... <Grid> <Grid.ColumnDefinitions> <ColumnDefinition Width="Auto" /> <GroupBox> <Grid> <Grid> <Grid.ColumnDefinitions> <ColumnDefinition Width="..." /> I'd like the second ColumnDefinition to be the same width as the first...

Flex - ComboBox has lines around it

I'm stumbling my way through designing my first Flex app, using Flex Builder 4 Beta 2. I'm trying to use a ComboBox, but they always seem to have lines around it and I can't figure out how to get rid of them. The ComboBox looks like this: http://www.freeimagehosting.net/uploads/a1cde1d098.png All I did was drag the ComboBox from the C...

Implement javascript sorting in a asp.net grid view

How can I accomplish gridview sorting in client browser using javascript ? without using inbuilt gridview sorting method. I really dont want the gridview to go to the DB each time while sorting. ...

WPF Grid/WrapPanel AutoSize Animation

Hi, I have the following layout in WPF <grid> <row height=auto> <border> <listbox> <border? </row> <row height=*> <othercontent> </row> </grid> Using MVVM and have listbox itemsource bound. I am using a wrapPanel in the grid, and have scrolling disabled so the Grid row height will grow and shrink based on the list box contents. Thi...

jqgrid row background colour change

Hi All I have a jq grid, and I have to check for a particular value in a column and change the row corresponding to the column (say red). I can get the row index, but I can't work out how to access that row and change its background. TIA Bibhu ...

fast sphere-grid intersection

hi! given a 3D grid, a 3d point as sphere center and a radius, i'd like to quickly calculate all cells contained or intersected by the sphere. Currently i take the the (gridaligned) boundingbox of the sphere and calculate the two cells for the min anx max point of this boundingbox. then, for each cell between those two cells, i do a bo...

ItemsPanel vs Grid vs GridSplitter

I am currently trying to build a ControlTemplate for an ItemsControl that uses the Grid as its ItemsPanel where each item is stacked horizontally and delimited with a GridSplitter. The basic goal is to have a dynamic bindable ItemsControl where all items stack up in a row and where each item can be resized with a splitter. There are ...

Can footers be added to MVCContrib grids?

I'd like for my column header to also be footers using MVCContrib grid. How can I add footers? <% Html.Grid(Model).Columns(col => { col.For(c => c.sub_id).Named("Id"); col.For(c => c.name).Named("Name"); col.For(c => c.group).Named("Group"); col.For(c => c.insurance_GL).Named("Insurance").Format("{0:d}"); }).Attributes(id => "list").Re...

ColumnDefinition MinWidth doesn't work correctly

Hi, I'm using a Grid in WPF (xaml) and I'm have some strange effect when using the MinWidth property in a ColumnDefinition. For example, when I use 9 ColumnDefinition and every ColumnDefinition has the 'Width="*"' property and one of the middle columns also has a MinWidth property then the size of the other columns is wrong. Well, it's...

How to draw lines across cells in a WPF Grid.

Hi, I am trying to fill the Grid control with custom controls dynamically. After the grid is filled with elements, I need to connect these elements by lines. How do I achieve this.... Thanks in advance ...

Grid like tables components for Flex/Air

I'm looking for some king of components which will be more powerful then current Datagrid and AdvDataGrid in Flex SDK. I need Paging, Filtering, Dynamic Loading, On Cell Validation, Lookup Field from another resulset and some other features which related to working with database tables and views. We can develop all that ourselves, but we...

Is there a better way than a grid to line up controls in WPF?

I am using a grid by the definition of appropriateness defined in this question Grid vs Stackpanel. However when working with grids you have to define the controls position inside them explicitly in the grid. This becomes a pain when having to reorder controls or when adding a new control to the grid. With the code provided as an example...

Displaying images as thumbnails

Hello all, I am thinking to create a program that will display many images in a form of thumbnails (like google images) .. While in Google images, it fill all of the grid with pictures, e.g. if the grid is 10x10 there will be 100 pictures, mine will only fill the grid with a few pictures e.g. 10 pictures and the pictures will randoml...

WPF datagrid question

Hi, Very simple question ... Can I use the WPF datagrid control in the same way I use a regular grid ? How can I do the following but using a WPF datagrid instead of using the standard Grid ? <Grid Width="542" Margin="0,12,0,0" HorizontalAlignment="Left"> <Grid.ColumnDefinitions> <ColumnDefinition Width="182" ...

Pythonic and efficient way of finding adjacent cells in grid

I am building a tile based app in Python using pyglet/openGL wherein I'll need to find the all of the adjacent cells for a given cell. I am working in one quadrant of a Cartesian grid. Each cell has an x and y value indicating it's position in the grid( x_coord and y_coord ). These are not pixel values, rather grid positions. I am lookin...

How to fill color in grid boxes randomly

Hi, How can I fill color on the grid boxes randomly? Rather than orderly as shown in picture here: public class grid extends JPanel{ Label one = new Label(); Label two = new Label(); Label three = new Label(); Label four = new Label(); public static void main(String[] args){ JFrame jf=new JFrame(); ...

Dojo Grid - store.revert() not working

Hello, I try to validate the modified fields of a dojo grid. If the validation fails, I call store.revert() and break out of the store fetch loop. But this doesn't seem to be working. In FF I get this error: 'assertion failed in ItemFileWriteStore'. Any help is appreciated. Thanks. ...