I am currently using the multiChart model and I have two different y Axes. I would like to change both axes to start at 0, because currently they start at the smallest data point y.
I tried to do the following
chart.yAxis1 tickFormat(d3.format(',.f')) .domain([0,max_y]);
but it does not work
and
.forceY ([0, max_y])
he tells me that there is no forceY function
Any ideas?
source share