Fix resizer on altair (#8603)

* changes

* add changeset

* add changeset

* changes

---------

Co-authored-by: Ali Abid <aliabid94@gmail.com>
Co-authored-by: gradio-pr-bot <gradio-pr-bot@users.noreply.github.com>
This commit is contained in:
aliabid94 2024-06-25 08:09:38 -07:00 committed by GitHub
parent 8aad678a63
commit affce4cbd9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 11 additions and 1 deletions

View File

@ -0,0 +1,6 @@
---
"@gradio/plot": patch
"gradio": patch
---
feat:Fix resizer on altair

View File

@ -28,7 +28,11 @@
spec = set_config(spec, computed_style, value.chart as string, colors);
}
$: fit_width_to_parent =
spec.encoding?.column?.field || spec.encoding?.row?.field ? false : true; // vega seems to glitch with width when orientation is set
spec.encoding?.column?.field ||
spec.encoding?.row?.field ||
value.chart === undefined
? false
: true; // vega seems to glitch with width when orientation is set
const renderPlot = (): void => {
if (fit_width_to_parent) {