Skip to content
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

feat(vis-type: scatter): improve rendering of scatter plot #530

Merged
merged 59 commits into from
Oct 16, 2024
Merged
Changes from 1 commit
Commits
Show all changes
59 commits
Select commit Hold shift + click to select a range
75373f2
Initialize branch
dvmoritzschoefl Sep 19, 2024
1d71f7c
Fix reset
puehringer Sep 19, 2024
29c1254
Simplify merge of finalLayout
puehringer Sep 19, 2024
e6db893
Make sure that range is used from previous layout
puehringer Sep 19, 2024
8f1208d
Regression for all plot types. Added scatter plot case
dvmoritzschoefl Sep 19, 2024
1e5ea3a
display modebar
dvmoritzschoefl Sep 19, 2024
51606e0
fixed selections
dvmoritzschoefl Sep 19, 2024
a2d2a33
added shift selection
dvmoritzschoefl Sep 19, 2024
3fc90f1
refactored hooks a bit, fixed two issues regarding text
dvmoritzschoefl Sep 20, 2024
c7fa0a0
removed text
dvmoritzschoefl Sep 20, 2024
ede8d90
experimental force layout
dvmoritzschoefl Sep 20, 2024
6778640
reverted text behavior to previous plot
dvmoritzschoefl Sep 23, 2024
3617fc1
readded trace error
dvmoritzschoefl Sep 23, 2024
b69fa34
added jstate module stabs
dvmoritzschoefl Sep 23, 2024
333ce34
all axis share the same style
dvmoritzschoefl Sep 23, 2024
1c5ff0e
restored color legends
dvmoritzschoefl Sep 23, 2024
007571e
activaed efl
dvmoritzschoefl Sep 23, 2024
af5c420
removed s
dvmoritzschoefl Sep 23, 2024
4f9e363
cleanup
dvmoritzschoefl Sep 23, 2024
1e3e358
cleanup
dvmoritzschoefl Sep 23, 2024
6089939
enabled show legend switch
dvmoritzschoefl Sep 23, 2024
a5ada29
enabled show legend switch
dvmoritzschoefl Sep 23, 2024
89a49fa
enabled show legend switch
dvmoritzschoefl Sep 23, 2024
ca9a90c
enabled show legend switch
dvmoritzschoefl Sep 23, 2024
5485f02
facet text
dvmoritzschoefl Sep 24, 2024
788910d
calc facet layout by rows, not columns
dvchristianbors Sep 25, 2024
2d8184e
tweak facet layout
dvchristianbors Sep 25, 2024
fcc97a4
use `idToLabelMapper` for plot labels
dvchristianbors Sep 25, 2024
3e8f3fc
do not facet one category
dvchristianbors Sep 25, 2024
6202cc1
cleanup
dvchristianbors Sep 26, 2024
c4500f9
truncate/round float values in tooltips
dvchristianbors Sep 26, 2024
6414a56
fix: set height always to 100% as updating the style dynamically does…
oltionchampari Sep 26, 2024
deed2fb
Merge branch 'develop' into mh/scatterplot_new
dvchristianbors Oct 1, 2024
791ea82
filter out missing values for regression line
dvchristianbors Oct 1, 2024
c872701
refactor: rename ScatterVisNew to ScatterVis
thinkh Oct 1, 2024
1213372
Used dimensions from parent to resize plotly
dvmoritzschoefl Oct 4, 2024
ad207fd
feat: Used dimensions from parent to resize plotly (#553)
thinkh Oct 4, 2024
1653a2c
Merge branch 'develop' into mh/scatterplot_new
thinkh Oct 4, 2024
a20d80b
various fixes
dvmoritzschoefl Oct 8, 2024
09ca3d1
fix: eslint
thinkh Oct 8, 2024
7f0294b
feedback from core meeting
dvmoritzschoefl Oct 9, 2024
9621e0a
Merge branch 'develop' into mh/scatterplot_new
thinkh Oct 9, 2024
cfdd35e
only calculate regressions for lower triangular part of SPLOM
dvmoritzschoefl Oct 10, 2024
380c30f
Merge branch 'mh/scatterplot_new' of github.com:datavisyn/visyn_core …
dvmoritzschoefl Oct 10, 2024
28977b3
added the ability to control subplots in the scattervis by supplying …
dvmoritzschoefl Oct 10, 2024
9dd25eb
fixed typing
dvmoritzschoefl Oct 10, 2024
5cc2885
Merge branch 'develop' into mh/scatterplot_new
thinkh Oct 10, 2024
8107ee9
fixed columns
dvmoritzschoefl Oct 10, 2024
e086261
Merge branch 'mh/scatterplot_new' of github.com:datavisyn/visyn_core …
dvmoritzschoefl Oct 10, 2024
5b3fb9b
removed scales from vis
dvmoritzschoefl Oct 15, 2024
2859229
style optional
dvmoritzschoefl Oct 15, 2024
2675da7
style optional
dvmoritzschoefl Oct 15, 2024
361dcff
positioned legend switch
dvmoritzschoefl Oct 15, 2024
4da432d
automated text measuring in facet/subplot mode
dvmoritzschoefl Oct 16, 2024
07685a1
added FastTextMeasure class for fast ellipsis calculation using a loo…
dvmoritzschoefl Oct 16, 2024
ba6121a
fixed color scales
dvmoritzschoefl Oct 16, 2024
49096fc
Merge branch 'develop' into mh/scatterplot_new
puehringer Oct 16, 2024
ce8d75b
Merge remote-tracking branch 'origin/develop' into mh/scatterplot_new
thinkh Oct 16, 2024
76dff94
tests: fix legend in playwright tests
thinkh Oct 16, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix: set height always to 100% as updating the style dynamically does…
… not work in production mode
oltionchampari committed Sep 26, 2024
commit 6414a56fc3de8fa59e8dbb7cb90ff13cdb24a60a
2 changes: 1 addition & 1 deletion src/vis/scatter/ScatterVisNew.tsx
Original file line number Diff line number Diff line change
@@ -685,7 +685,7 @@ export function ScatterVisNew({
}}
config={{ responsive: true, scrollZoom, displayModeBar: false }}
useResizeHandler
style={{ width: '100%', height: facet && facet?.resultData.length > 1 ? layout.grid.rows * 400 : '100%' }}
style={{ width: '100%', height: '100%' }}
/>
</>
) : status !== 'pending' && status !== 'idle' ? (
Loading