-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixes #441 ```py from deephaven import time_table, empty_table from deephaven import ui from deephaven.plot import express as dx _stocks = dx.data.stocks() _t = time_table("PT1S").update(["X=ii", "Y=X", "Z=X", "A=X", "B=X", "C=X", "HalfX=X/2", "LogX=X > 0 ? log(X) : 0", "X2=X*2"]) t = ui.table(_t, databars=[ { "column": "X", "color": 'negative', "opacity": 0.4, "markers": [{ "value": "HalfX", "color": "limegreen" }, { "value": 1000, "color": "accent" }] }, { "column": "Y", "value_column": "LogX", "color": 'positive' }, { "column": "Z", "max": 10, "color": ['notice', 'positive', 'dodgerblue'] }, { "column": "A", "max": "X2", "color": ['info', 'magenta-600'] }, { "column": "B", "color": ['#f3cd5b', '#9edc6f'] }, { "column": "C", "color": ['#f3cd5b', '#9edc6f'] }, ]) t2 = ui.table(_stocks, databars=[ { "column": "random", "value_placement": "hide" }, { "column": "SPet500", "color": 'info', "value_placement": "overlap" }, { "column": "size", "max": 1000, "direction": "RTL", "color": ['notice', 'positive'] }, { "column": "sym", "value_column": "price", "color": ['magenta-200', 'magenta-800'] }, ]) ```
- Loading branch information
1 parent
fb7bd78
commit ada20a3
Showing
8 changed files
with
1,270 additions
and
1,988 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.