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
The d3.scales.ordinal axis will only allow each label to appear in a single location. Repeated labels are plotted to the same location instead of in the order supplied.
Solve this by separating the labels from the domain. The value passed to d3.scale.ordinal.domain will be 1:length(labels), d3.axis.tickValues gets labels.
The d3.scales.ordinal axis will only allow each label to appear in a single location. Repeated labels are plotted to the same location instead of in the order supplied.
Solve this by separating the labels from the domain. The value passed to d3.scale.ordinal.domain will be 1:length(labels), d3.axis.tickValues gets labels.
See issue talgalili#67 on project repo
The text was updated successfully, but these errors were encountered: