Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
004c401
Take config.plotGlPixelRatio into account for scattergl trace
jonmmease Feb 12, 2021
aa67a7f
Take config.plotGlPixelRatio into account for parcoords trace
jonmmease Feb 12, 2021
55ee4b3
Take config.plotGlPixelRatio into account for splom trace
jonmmease Feb 12, 2021
f03bce0
scattergl size fixes.
jonmmease Feb 13, 2021
ef92fe6
Scale parcoords line width with plotGlPixelRatio
jonmmease Feb 13, 2021
c755979
parcoords: Use paper_bgcolor constraint border and text shadows to su…
jonmmease Feb 13, 2021
b4b60e4
Fix splom grid scaling
jonmmease Feb 13, 2021
4c26380
Fix regl check
jonmmease Feb 13, 2021
73be4e1
lint
jonmmease Feb 13, 2021
992b50e
update canvas size in responsive. Factor of 2 from plotGlPixelRatio
jonmmease Feb 13, 2021
d666f09
Fix responsive tests
jonmmease Feb 13, 2021
89bf4db
Update scattergl_test pixel coordinates.
jonmmease Feb 13, 2021
c14ab5f
Update approximate marker padding calculation
jonmmease Feb 13, 2021
f4c9e6e
Fix approximate marker size padding calculation for SPLOM as well
jonmmease Feb 13, 2021
9a0af27
Update SPLOM tests
jonmmease Feb 13, 2021
5e63feb
update coordinates
jonmmease Feb 13, 2021
3e5f9b7
Fix gl clear context test
jonmmease Feb 14, 2021
2108515
Update some reviewed baselines
jonmmease Feb 14, 2021
f3ce630
Add dark background parcoords baseline
jonmmease Feb 14, 2021
b4abfb2
Fix scattergl line dash lengths
jonmmease Feb 14, 2021
e0eba2b
Fix splom grid spacing
jonmmease Feb 14, 2021
849db07
Update glpolar_style baseline
jonmmease Feb 14, 2021
69582cb
update glpolar_subplots baseline
jonmmease Feb 14, 2021
d6bddd1
Update glpolar_scatter baseline
jonmmease Feb 14, 2021
5f351b5
parcoords linewidth of 1 for browser compatibility
jonmmease Feb 17, 2021
22362fb
Try removing regl size check to see if it changes image export behavior
jonmmease Feb 18, 2021
4860893
Revert "Try removing regl size check to see if it changes image expor…
archmoj Feb 19, 2021
8ea156c
Merge remote-tracking branch 'origin/master' into scattergl_glpixelratio
archmoj Feb 19, 2021
abaf46e
Merge remote-tracking branch 'origin/master' into scattergl_glpixelratio
archmoj Jun 26, 2021
cde7a0b
fix unused variable
archmoj Jun 26, 2021
800de99
update baselines using new system
archmoj Jun 26, 2021
5242b99
Merge remote-tracking branch 'origin/master' into scattergl_glpixelratio
archmoj Jul 5, 2021
549701f
Merge remote-tracking branch 'origin/master' into scattergl_glpixelratio
archmoj Jul 7, 2021
4e65600
provide draft log for PR 5500
archmoj Jul 7, 2021
0147edc
ensure parcoords plotGlPixelRatio is within supported range of the de…
archmoj Jul 9, 2021
c0880c3
adjust jasmine tests
archmoj Jul 9, 2021
6764876
fixup changes to splom grid made in b4b60e4a6dabf5e7cd9ed572cfb29333e…
archmoj Jul 9, 2021
73fc99e
isolate and adjust parcoord hover test
archmoj Jul 9, 2021
89e2437
refactor splom base plot
archmoj Jul 9, 2021
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
adjust jasmine tests
  • Loading branch information
archmoj committed Jul 9, 2021
commit c0880c36eddaf4fbd80aa2c55b063e67ef7fd291
2 changes: 2 additions & 0 deletions test/jasmine/tests/scattergl_select_test.js
Original file line number Diff line number Diff line change
Expand Up @@ -479,6 +479,7 @@ describe('Test displayed selections:', function() {
}

var mock = {
config: { plotGlPixelRatio: 1 },
data: [{
x: x, y: y, type: 'scattergl', mode: 'markers'
}],
Expand Down Expand Up @@ -522,6 +523,7 @@ describe('Test displayed selections:', function() {
}

var mock = {
config: { plotGlPixelRatio: 1 },
data: [{
x: x, y: y, type: 'scattergl', mode: 'markers',
marker: {symbol: symbol, size: size, color: color}
Expand Down
6 changes: 4 additions & 2 deletions test/jasmine/tests/scatterpolargl_test.js
Original file line number Diff line number Diff line change
Expand Up @@ -235,6 +235,8 @@ describe('Test scatterpolargl interactions:', function() {
polar: {domain: {column: 1}},
width: 400,
height: 400
}, {
plotGlPixelRatio: 1
})
.then(function() {
expect(countCanvases()).toBe(3);
Expand Down Expand Up @@ -415,7 +417,7 @@ describe('Test scatterpolargl autorange:', function() {
type: 'scatterpolargl',
mode: 'markers',
r: r,
marker: {size: 10}
marker: {size: 5}
}])
.then(function() {
expect(gd._fullLayout.polar.radialaxis.range)
Expand All @@ -434,7 +436,7 @@ describe('Test scatterpolargl autorange:', function() {
}])
.then(function() {
expect(gd._fullLayout.polar.radialaxis.range)
.toBeCloseToArray([0, 1.0465], 2, 'radial range');
.toBeCloseToArray([0, 1.0975], 2, 'radial range');
expect(cnt).toBe(1, '# of plot call');
})
.then(done, done.fail);
Expand Down