I'm attempting to define the y-axis range of the chart to be between 1 and 100.
After reviewing the API documentation, I came across a potential solution involving axis.tickValues which can be found here: https://github.com/mbostock/d3/wiki/SVG-Axes#wiki-tickValues
Unfortunately, trying this option did not yield the desired outcome. While exploring the documentation further on the same page under axis.tickSize, I noticed the following statement:
The end ticks are determined by the associated scale's domain extent, and are part of the generated path domain rather than a tick line
It appears that setting the minimum and maximum values of the range cannot be achieved through the Axis option.
Do you have any suggestions for where I could specify the range?