don't hide axis on horizontal bar

master-patched
Bob Monteverde 12 years ago
parent a72645dbe4
commit 72c91548de

@ -4856,11 +4856,14 @@ nv.models.multiBarHorizontalChart = function() {
.selectAll('line, text')
.style('opacity', 1)
/*
//I think this was just leaft over from the multiBar chart this was built from.. commented to maek sure
xTicks.filter(function(d,i) {
return i % Math.ceil(data[0].values.length / (availableWidth / 100)) !== 0;
})
.selectAll('line, text')
.style('opacity', 0)
*/
yAxis
.ticks( availableWidth / 100 )

2
nv.d3.min.js vendored

File diff suppressed because one or more lines are too long

@ -131,11 +131,14 @@ nv.models.multiBarHorizontalChart = function() {
.selectAll('line, text')
.style('opacity', 1)
/*
//I think this was just leaft over from the multiBar chart this was built from.. commented to maek sure
xTicks.filter(function(d,i) {
return i % Math.ceil(data[0].values.length / (availableWidth / 100)) !== 0;
})
.selectAll('line, text')
.style('opacity', 0)
*/
yAxis
.ticks( availableWidth / 100 )

Loading…
Cancel
Save