plotly.rs
plotly.rs copied to clipboard
Axis::matches is hardcoded to "x"
The Axis::matches function for the Layout struct currently receives a bool and then hardcodes this internally to "x". This limits greatly the matching that can be done for axes within subplots.
I believe the function should receive a string instead, allowing for far greater customization of axis matching as is supported by Plotly.js. [doc1, doc2]