Ag-grid - full screen chart range - charts

In the demo below, right click on any line, then Chart Range and click on any mode. A panel will open. Is this panel possible to maximize in full screen?
https://ag-grid.com/example

Related

The sidebar and console of VSCODE are not positioned properly, and the console blocks the display of sidebar files

I encountered a problem. When I first started using vscode, the position of the console and the side was the position of the picture below, so that the console would not block the display of the sidebar files.
But then I don't know what to set, the console will fill the bottom, and when I want to use the console, it will block the preview sidebar file, like the picture below
In the top menu go to View -> Appearance -> Align Panel -> Center.

VS Code - show sidebar or panel exclusively

Is it possible to configure VS Code to hide Side Bar when Panel is shown and hide Panel when Side Bar is shown? I work on a laptop so the screen estate is at premium. Thus I would like to have both Side Bar and Panel on the right (so Editor can use the full screen height) but never show them at the same time as the triple Editor/Panel/SideBar does not fit the screen.
Alternatively it will be nice to show both Panel and Sidebar on the right, but with Panel below Side Bar, but that I guess is just not supported by VS Code.

How to detach Outline from Explorer

Problem: Detaching the Outline section from Explorer and moving it to the right side.
Tried: right-clicking, changing the settings - cannot find where and how the Outline section be detached from Explorer.
Question: is it possible to detach the Outline Panel from Explorer Panel?
Is there another extension, which the same functionality as Outline, which could be placed on the right side?
Thank you!
This should be supported directly in VSCode 1.64 (Jan. 2022), with the new side panel.
New Side Panel
This milestone, we introduce the Side Panel, a new surface in the workbench to house views from the Side Bar or the bottom Panel appearing opposite the Side Bar.
Unlike the historical ability to move the bottom Panel to the left or the right of the editor, the new Side Panel works in addition to the bottom Panel so you can see more sets of views at once.
To use the Side Panel, you'll need to move some views over to it.
Based on one of our most upvoted feature requests, you might want to move Outline from the Side Bar to Side Panel.
You can do this by dragging and dropping the view into the Side Panel.
If the Side Panel is not open, just like the bottom Panel, dragging a view to the edge of the editor area, will pop it open.
Alternatively, you can use the Move View command for something more keyboard friendly.
Moving Outline View to the Side Panel:
Yes you can, click on the Outline Title Bar and you can move it to any other panel, even the bottom Problems/Terminal panel.
You don't need any special extension for it. Almost all panels can be moved around in VSCode
You cannot have a Floating Window however.
You also Cannot have Two Sidebars
If you want to have the sidebar to the right go to View - Appearance - Move Side Bar Right
As of now, no you cannot have two sidebars, this is the issue tracking that feature.
I can suggest an alternative, you can move the outline to the bottom panel, where the terminal is so that you can have both at the same time but just not as a sidebar.
like this:
or like this but attaching two Bottom Panel tabs together.
Here is a Demo on how to do it
So after a lot of searching, I finally came up with my own solution. Apologies in advance for the poor screenshot quality. I used Microsoft's Steps Recording not realizing the image compression would be so poor.
First, open up a new terminal (Ctrl+Shift+`)
Make sure that the terminal tab is active in the panel. Right click the terminal name on the right-hand side and select "Move into editor area.
"
You can then right-click the now-tabbed Terminal in your editor space and select "Split down."
Your editor should look like the image below. However, we're not done yet! Here's where the magic happens. Open another terminal.
Things will look weird but this is going to work.
Click the "Outline" header in the sidebar and drag it into the bottom terminal panel:
Sidebar > (Outline) > Terminal Panel
Next, right-click on the tab bar of the bottom panel and select "Move Panel Right"
Et voila! You should how have a sidebar on the left, and Outline on the right, and a Terminal on the bottom!

Move terminal panel to bottom option gone? (VSCode)

Just updated VSCode to 1.29.0 on macOS 10.12.6 and it looks like this option to move the terminal to the bottom of VSCode (and then back right) is no more. Is that on purpose? Did it move to a specific setting? I was using that feature quite a lot.
Here goes a screenshot:
EDIT:
Can still move by context menu:
EDIT for v1.42 (January 2020 release):
Panel on the left
The panel can now be moved to the left side of the editor with the
setting:
"workbench.panel.defaultLocation": "left"
This removes the command
View: Toggle Panel Position (workbench.action.togglePanelPosition) in
favor of the following new commands:
View: Move Panel Left (workbench.action.positionPanelLeft)
View: Move Panel Right (workbench.action.positionPanelRight)
View: Move Panel To Bottom (workbench.action.positionPanelBottom)
See https://github.com/microsoft/vscode-docs/blob/vnext/release-notes/v1_42.md#panel-on-the-left
[Previous answer - see above for later info:]
See release notes on panel position button.
Panel position button to context menu
In order to preserve horizontal space and reduce clutter, we removed
the toggle Panel position button (Move to Right, Move to Bottom) from
the Panel title area. The action is now available in the Panel title
area context menu and also in View > Appearance > Toggle Panel
Position main menu. Another reason for removing this button was that
we believe users set their layout once and don't normally toggle back
and forth.
There is also this setting to "permanently" change the panel location:
workbench.panel.defaultLocation
But to move it on the fly now you use the context menu.
Apparently people just weren't using it enough to warrant the screen space.
Just Click through the following:
View > Appearance > Move Panel Right
If you don't see the panel at the bottom,
View > Appearance > Toggle Panel Position
Now drag and drop the terminal icon from the sidebar (left or right side) to panel bar (bottom)

Page down/up when clicking in the VSCode scrollbar

Is there a setting to change the click behavior in the scrollbar to page up/down instead of jumping to the location in the file? This is the usual scrollbar behavior in almost every other applications except maybe unix applications.
A suggestion could be:
Left click: page up/down
Right click: jump to location
There is a setting for this now:
Editor: Scroll by Page
Controls whether clicks scrolls by page or
jumps to click position.
With that setting enabled, the editor will scroll by one viewport page when clicking anywhere above or below the scrollThumb. With it not enabled (the default) it will scroll to the position in the scroll track where you clicked.
This behavior does not currently exist. I suggest opening a feature request on github.
If, like me, you've been brought to this page despite putting "Visual Studio" into your web search, you can modify this behaviour in the full blown Visual Studio as follows:
Tools > Options > Text Editor > All Languages > Scroll Bars
Under "Behavior", toggle between bar mode and map mode
More information can be found by reading the Microsoft Docs for this feature.