Commit dd3667ff authored by Masayuki Tanaka's avatar Masayuki Tanaka

Fix condition for tick update of category axis

parent 0ed8a67f
...@@ -3144,7 +3144,7 @@ ...@@ -3144,7 +3144,7 @@
if (isCategorized) { if (isCategorized) {
// ATTENTION: need to update domain with current domain when categoryAxis // ATTENTION: need to update domain with current domain when categoryAxis
if (targetsToShow.length === 0 || !withUpdateOrgXDomain || withUpdateXDomain) { if (targetsToShow.length === 0 || !withUpdateOrgXDomain || !withUpdateXDomain) {
x.domain([0, xaxis.selectAll('.tick').size()]); x.domain([0, xaxis.selectAll('.tick').size()]);
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment