I am currently using NVD3 to make a few line charts. I am wondering if it is possible to make the y axis ticks to always start from 0. Currently it always starts from the lowest y value. I have tried using tickValues but I do not want to change the other values. I have also tried to add a data point with a value of 0, but this seems like a workaround and it affects the way the graph looks. Any ideas?
Most charts have a forceX and forceY functions which take a array of values. You can use it like this:
var chart = nv.models.lineChart();
chart.forceX([0, 10])
chart.forceY([-1, 1])
Which will ensure that on your xAxis you are always showing at least 0 and 10, but won't restrict the domain if you manipulate it directly. That is if you do something like:
chart.yAxis.scale().domain([0, maxValue]);
and your data has negative X values that won't show on your chart because they'll fall outside of the specified domain, but they will, if you use forceX.