mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-17 02:51:36 -05:00
Add horizontal scrollbar to Kqlmagic table and remove plotly graph max width (#21934)
* add scroll and remove plotly max width * scope down
This commit is contained in:
@@ -20,3 +20,7 @@ output-area-component .notebook-output {
|
|||||||
white-space: pre-wrap;
|
white-space: pre-wrap;
|
||||||
word-wrap: break-word;
|
word-wrap: break-word;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
output-area-component .notebook-output .output-userselect {
|
||||||
|
overflow: scroll;
|
||||||
|
}
|
||||||
|
|||||||
@@ -78,7 +78,6 @@ export class PlotlyOutputComponent extends AngularDisposable implements IMimeCom
|
|||||||
PlotlyOutputComponent.Plotly = import('plotly.js-dist-min');
|
PlotlyOutputComponent.Plotly = import('plotly.js-dist-min');
|
||||||
}
|
}
|
||||||
this._plotDiv = this.output.nativeElement;
|
this._plotDiv = this.output.nativeElement;
|
||||||
this._plotDiv.style.maxWidth = '700px';
|
|
||||||
this._plotDiv.style.width = '100%';
|
this._plotDiv.style.width = '100%';
|
||||||
this.renderPlotly();
|
this.renderPlotly();
|
||||||
this._initialized = true;
|
this._initialized = true;
|
||||||
|
|||||||
Reference in New Issue
Block a user