I\'m trying to set the y-axis range of the chart from 1-100.
Consulted the API documentation and found a possible solution with axis.tickValues as seen here https://
If you mean setting the y-domain (the range of numbers that should be displayed) for stacked area charts, this works for me:
y-domain
nv.models.stackedAreaChart() .x(function(d) {...}) .y(function(d) {...}) .yDomain([0, maxY]) ...