Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
jnumainville committed Nov 13, 2024
1 parent 0e5329f commit 0144ef1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/app.d/ui_flex.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@
from deephaven import empty_table

_t_flex = empty_table(100).update(["x = i", "y = sin(i)"])
_p_flex = dx.line(_t_flex, x="x", y="y")
# By default, dx.line renders with webgl but some tests use the trace class to see if the chart is rendered,
# which is not there in webgl.
_p_flex = dx.line(_t_flex, x="x", y="y", render_mode="svg")


@ui.component
Expand Down

0 comments on commit 0144ef1

Please sign in to comment.