You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
setting mirror: 'allticks' on an axis results in a giant bounding box for the axis, which causes problems with the new automargin flag on axes, and the positioning of the rangeslider. You can see this problem in action by setting automargin on any of the axes here (once we release 1.35.0) https://codepen.io/nicolaskruchten/pen/WMWvVz
This is due to the fact that the mirrored axis is drawn with the same path as the 'main' axis where the ticklabels are. It would make some sense to draw that secondary axis in a different element, so that the bounding box of the main axis is independent of the mirror attribute.
The text was updated successfully, but these errors were encountered:
... by registering a mirror-specific push-margin id.
- Note that to handle the 'all' and 'allticks', we use
ax._counterDomain(Min|Max) added previously.
- both automargin-mirror* baselines are now correct
setting
mirror: 'allticks'
on an axis results in a giant bounding box for the axis, which causes problems with the newautomargin
flag on axes, and the positioning of the rangeslider. You can see this problem in action by settingautomargin
on any of the axes here (once we release 1.35.0) https://codepen.io/nicolaskruchten/pen/WMWvVzThis is due to the fact that the mirrored axis is drawn with the same path as the 'main' axis where the ticklabels are. It would make some sense to draw that secondary axis in a different element, so that the bounding box of the main axis is independent of the
mirror
attribute.The text was updated successfully, but these errors were encountered: