10000 Implement fast zsmooth option for image trace by almarklein · Pull Request #5354 · plotly/plotly.js · GitHub
[go: up one dir, main page]

Skip to content

Implement fast zsmooth option for image trace #5354

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

Merged
merged 14 commits into from
Jan 7, 2021
Prev Previous commit
Next Next commit
Update src/traces/image/attributes.js
Co-authored-by: Mojtaba Samimi <33888540+archmoj@users.noreply.github.com>
  • Loading branch information
almarklein and archmoj authored Jan 5, 2021
commit 33ab9590f3c6ceac40646125c67ce0e16f445fa7
2 changes: 1 addition & 1 deletion src/traces/image/attributes.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ module.exports = extendFlat({
},
zsmooth: {
valType: 'enumerated',
values: ['nearest', 'linear'],
values: ['fast', false],
dflt: 'nearest',
role: 'info',
editType: 'plot',
Expand Down
0