6

I'd like to include an image in a timeline in mathematica.

Is this possible using the TimelinePlot? There is this previous question which considers graphical timelines, but nothing that will create a timeline that has images and a title at each dates.

Any advice on where to start to look for a solution?

Tomi
  • 4,366
  • 16
  • 31

1 Answers1

8

Here is an example of images in a TimelinePlot

First, set the image variable to your image copied screenshot of this question

Second, create data for the plot using rules

data = { {2017, 10, 02} -> image, {2018, 10, 02} -> image}

Then use TimelinePlot

TimelinePlot@data

The result

enter image description here

FredrikD
  • 1,868
  • 1
  • 13
  • 25