With that being said, these options might not work with the Telerik styles. Telerik is a paid for framework which makes it difficult for ASP.NET support members to test layouts. Your best option is Telerik support. The getting started docs show side-by-side
gauges so seems possible; https://docs.nativescript.org/angular/ui/ng-components/ng-gauge/getting-started
Member
1 Points
8 Posts
why is a simple DIV positioning kicking my butt??
Aug 28, 2020 04:31 PM|celticpiping|LINK
The goal: simply place two controls in a horizontal line, within a DIV.
I've tried ...everything: clearly I'm not getting how it works..
I'm using asp.net in VS.NET 2019, & a css page
Ideally, I want two gauges side by side in a DIV.
Currently, here's the code:
And here's what it looks like(Firefox on Windows 10):
All-Star
52991 Points
23585 Posts
Re: why is a simple DIV positioning kicking my butt??
Aug 28, 2020 05:41 PM|mgebhard|LINK
Placing divs side by side is very common in response websites. The Bootstrap grid system is good example; https://getbootstrap.com/docs/4.0/layout/grid/. Other examples is the CSS Flexbox; https://www.w3schools.com/css/css3_flexbox.asp
With that being said, these options might not work with the Telerik styles. Telerik is a paid for framework which makes it difficult for ASP.NET support members to test layouts. Your best option is Telerik support. The getting started docs show side-by-side gauges so seems possible; https://docs.nativescript.org/angular/ui/ng-components/ng-gauge/getting-started
Member
1 Points
8 Posts
Re: why is a simple DIV positioning kicking my butt??
Aug 28, 2020 05:47 PM|celticpiping|LINK
wow, superb!
The flexbox way just got me back on track.
Thank you!!