nvd3 line chart, how to remove gridlines and yaxis

charts, gridlines, line, nvd3.js

Solution

To remove tick on y-axis

.nv-axis.nv-y .tick line {
        display:none;
    }

To remove tick on x axis

.nv-axis.nv-x .tick line {
        display:none;
    }

To remove label on x axis

.showXAxis(false)

To remove label on y axis

.showYAxis(false)

To remove all the grid lines

.nv-axis .tick line {
        display:none;
    }

Problem

I have made a line chart with view finder. Here is my initial code ``` var chart = nv.models.lineWithFocusChart(); // chart.transitionDuration(500); chart.xAxis .tickFormat(d3.format(',g')); chart.xAxis .axisLabel("Date"); chart.xAxis.tickPadding(0); chart.x2Axis .tickFormat(d3.format(',g')); chart.yAxis .tickFormat(d3.format(',.2g')); chart.y2Axis .tickFormat(d3.format(',.2h')); // chart.showYAxis(false); ``` I want to remove the y axis labels ( i.e. i want no number showing on the y axis). I also want to remove all the gridlines. is there something like chart.yAxis.somethinghere to do this? Thanks

Original source