-
Notifications
You must be signed in to change notification settings - Fork 80
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Error when plotting xy plot over OHLC plot #2094
Comments
I just hit this problem when trying to do this for a user: from deephaven import time_table, empty_table
from deephaven.plot import Figure
t = time_table("00:00:01").update(["H=1.1*ii", "L=0.9*ii", "O=1.01*ii", "C=0.99*i", "Signal=sin(0.11*ii)"])
f = Figure() \
.plot_ohlc("OHLC", t=t, x="Timestamp", open="O", high="H", low="L", close="C") \
.x_twin() \
.plot_xy("Signal", t=t, x="Timestamp", y="Signal") \
.show() |
The below code lets me graph
|
niloc132
added a commit
to niloc132/deephaven-core
that referenced
this issue
Oct 12, 2022
Updated the original query to use our current py api:
|
niloc132
added a commit
to niloc132/deephaven-core
that referenced
this issue
Oct 12, 2022
@niloc132 I get the below error when running your latest script.
|
Yes, the patch isn’t landed yet, I’ve only created a draft to work on the feature. The comment I made was only to modernize the query for future testing.
|
niloc132
added a commit
to niloc132/deephaven-core
that referenced
this issue
Nov 11, 2022
niloc132
added a commit
that referenced
this issue
Dec 1, 2022
Allows a chart to contain both XY/scatter and ohlc data, though twin() must still be used to share axes. Fixes #2094
mofojed
pushed a commit
that referenced
this issue
Jul 4, 2024
Release notes https://github.com/deephaven/web-client-ui/releases/tag/v0.84.0 ### ⚠ BREAKING CHANGES * - @deephaven/jsapi-components - The contract of `useSearchableViewportData` to be more consistent with `useViewportData`. `usePickerWithSelectedValues` now requires `timeZone`. - @deephaven/jsapi-utils - `createSearchTextFilter` requires `timeZone` ### Features * useSearchableViewportData - support non-text filters ([#2092](deephaven/web-client-ui#2092)) ([7009e21](deephaven/web-client-ui@7009e21)), closes [#2102](deephaven/web-client-ui#2102) [#2091](deephaven/web-client-ui#2091) ### Bug Fixes * `isElementOfType` Improved type inference ([#2099](deephaven/web-client-ui#2099)) ([e13c9d7](deephaven/web-client-ui@e13c9d7)), closes [#2094](deephaven/web-client-ui#2094) * Console does not scroll to bottom when code run from notebook ([#2114](deephaven/web-client-ui#2114)) ([e75e716](deephaven/web-client-ui@e75e716)) * make textValue default to key for Normalized Item ([#2113](deephaven/web-client-ui#2113)) ([bd3e944](deephaven/web-client-ui@bd3e944)) * Update IrisGridContextMenuHandler getHeaderActions return type to be more permissive ([#2117](deephaven/web-client-ui#2117)) ([4e08b79](deephaven/web-client-ui@4e08b79)) Co-authored-by: deephaven-internal <66694643+deephaven-internal@users.noreply.github.com>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Description
Try and create a plot with an OHLC plot and an XY plot
Steps to reproduce
Expected results
Actual results
The text was updated successfully, but these errors were encountered: