The options for my Vis timeline are as follows...
var options = {
height: '150px',
min: start.add(-3, 'M'),
max: finish.add(3, 'M'),
start: start,
end: finish,
zoomMin: 21600000
};
I'm finding that with this config, start and finish are ignored and the initial visible period is bounded by min and max.
If I remove min and max, then the initial visible period is start and end, except that the min and max are thousands of years in the past and future.
How do I use both of these sets of properties at the same time?