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
At the moment, it is not possible to get the right position of a color_axis.
color_axis
If you set the color_axis like this
xpl::color_axis ax_c(sc); ax_c.label = "Values"; ax_c.orientation = "vertical"; ax_c.side = "right";
The orientation and the side is not applied.
orientation
side
We need to execute two times the following commands in the cell after the creation of the xfigure to have the right behavior.
xfigure
ax_c.orientation = "vertical"; ax_c.side = "right";
The text was updated successfully, but these errors were encountered:
note for self: check the validators / observers for these properties in bqplot.
Sorry, something went wrong.
No branches or pull requests
At the moment, it is not possible to get the right position of a
color_axis
.If you set the
color_axis
like thisThe
orientation
and theside
is not applied.We need to execute two times the following commands in the cell after the creation of the
xfigure
to have the right behavior.The text was updated successfully, but these errors were encountered: