I need to plot images like a timeline view/chart with start and end timestamps on x-axis.
The below image contains 3 PNG images and each image has start and end timestamps.
Please find the below screenshot for reference.
My Datapoint looks like below
this.audioData = [{
startTimestamp: 1515096303610,
endTimestamp: 1515096903667,
position: 1,
image: 'assets/img/audio-image1.png'
}, {
startTimestamp: 1515096903667,
endTimestamp: 1515097503607,
position: 1,
image: 'assets/img/audio-image1.png'
}, {
startTimestamp: 1515096903667,
endTimestamp: 1515096903670,
position: 1,
image: 'assets/img/audio-image3.png'
}];
}
Note: I am currently using google charts and dev extreme charts if any way on using those two will be more helpful. If any other charts with same requirements also fine. Can anyone please help me on this?