envyN / ngx-widget-grid

Angular 2.x or in general ng-x module for dashboards
https://envyn.github.io/ngx-widget-grid
MIT License
65 stars 14 forks source link

Concept of colspan and rowspan #7

Closed beeing closed 6 years ago

beeing commented 7 years ago

Select one ... (check one with "x")

   [ ] bug
   [x] feature request
   [ ] enhancement

Expected behavior

Similar to HTML tables, it is possible to span across multiple columns or rows. This is particularly useful for widgets that can stretch horizontally or vertically.

For those who do not prefer to have a scrollbar within each widget, this will provide a nicer UX.

envyN commented 7 years ago

Hi @beeing, Widget resizing is already a feature. Did you try something like this:

<ngx-widget [resizable]="true" [(position)]="widget.position"...>

That should allow you to shrink/expand widgets

beeing commented 7 years ago

Maybe that's possible, will try it out first. Thanks.