Skip to content

Commit 5d6d457

Browse files
authored
Merge pull request #7002 from plotly/fix-isosurface-vMax
Fix `isosurface` maximum value calculation when `isomax` is set to null
2 parents 380fa8c + 404979e commit 5d6d457

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

draftlogs/7002_fix.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
- Fix isosurface maximum value calculation when `isomax` is set to null [[#7002](https://github.com/plotly/plotly.js/pull/7002)]

src/traces/isosurface/calc.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ module.exports = function calc(gd, trace) {
3535
trace._minValues = min;
3636
trace._maxValues = max;
3737
trace._vMin = (trace.isomin === undefined || trace.isomin === null) ? min : trace.isomin;
38-
trace._vMax = (trace.isomax === undefined || trace.isomin === null) ? max : trace.isomax;
38+
trace._vMax = (trace.isomax === undefined || trace.isomax === null) ? max : trace.isomax;
3939

4040
colorscaleCalc(gd, trace, {
4141
vals: [trace._vMin, trace._vMax],

0 commit comments

Comments
 (0)