We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
If dimension tickvalues are explicitly set by external code . User defined tick values goes off when double clicked on Axis (Flip Axis) .
In flipAxisAndUpdatePCP(dimension) , below line of code
d3.select(this.parentElement) .transition() .duration(.animationTime) .call(axis.scale(.dimensions[dimension].yscale));
should be replaced with
d3.select(this.parentElement) .transition() .duration(__.animationTime).call( pc.applyAxisConfig(axis, __.dimensions[dimension]));
This can set all tick details set externally.
The text was updated successfully, but these errors were encountered:
ref #325 and #265
Sorry, something went wrong.
Update flipAxisAndUpdatePCP.js
1cce8f9
Applying fix by syntagmatic/parallel-coordinates#327
No branches or pull requests
If dimension tickvalues are explicitly set by external code . User defined tick values goes off when double clicked on Axis (Flip Axis) .
In flipAxisAndUpdatePCP(dimension) , below line of code
d3.select(this.parentElement)
.transition()
.duration(.animationTime)
.call(axis.scale(.dimensions[dimension].yscale));
should be replaced with
This can set all tick details set externally.
The text was updated successfully, but these errors were encountered: