I am having issue with the tick text in the x-axis. I am using the example from https://plotly.com/javascript/time-series/#time-series-with-rangeslider with one modification where I add the tickformat: ‘%y%V’ into the xaxis dict.
Plotly.d3.csv("https://raw.githubusercontent.com/plotly/datasets/master/finance-charts-apple.csv", function(err, rows){
function unpack(rows, key) {
return rows.map(function(row) { return row[key]; });
}
var trace1 = {
type: "scatter",
mode: "lines",
name: 'AAPL High',
x: unpack(rows, 'Date'),
y: unpack(rows, 'AAPL.High'),
line: {color: '#17BECF'}
}
var trace2 = {
type: "scatter",
mode: "lines",
name: 'AAPL Low',
x: unpack(rows, 'Date'),
y: unpack(rows, 'AAPL.Low'),
line: {color: '#7F7F7F'}
}
var data = [trace1,trace2];
var layout = {
title: 'Time Series with Rangeslider',
xaxis: {
autorange: true,
range: ['2015-02-17', '2017-02-16'],
rangeselector: {buttons: [
{
count: 1,
label: '1m',
step: 'month',
stepmode: 'backward'
},
{
count: 6,
label: '6m',
step: 'month',
stepmode: 'backward'
},
{step: 'all'}
]},
rangeslider: {range: ['2015-02-17', '2017-02-16']},
type: 'date',
tickformat: '%y%V',
},
yaxis: {
autorange: true,
range: [86.8700008333, 138.870004167],
type: 'linear'
}
};
Plotly.newPlot('myDiv', data, layout);
})
Overall, plotly.js is able to give the correct value, except when there is the cross between the year, for example instead of 1553 or 1601, it gave 1653 and instead of 1652 or 1701, it gave 1752.
Please advise on how to resolve this.
Thanks.