Unable to add vertical marker's to xAxis when the axis type is "time". I wanted to add markers which represents events in the time axis on different dates.
Sample which I tried, https://jsfiddle.net/msbasanth/ez3cgm5d/3/
When I have xAxis type as 'category' or 'value' I am able to add the marker line without an issue. This is how I set markerLine in xAxis.
xAxis: {
type: "time",
axisTick: {
show: false,
},
markLine: {
data: [
[
{
name: 'Mark line between two points',
x: 100,
y: 100
},
{
x: 500,
y: 200
}
]
],
}
}
https://jsfiddle.net/msbasanth/2g614wzu/
Here in this sample I could see markers added to xAxis (type: "time") but looks complex and I could sees they have an approximation of time axis. Do we have a direct way for setting marker in time xAxis on specified date values?