Tengo una línea de tiempo usando gráficos de reacción de Google.
const columns = [ { type: "string", id: "President" }, { type: "string", id: "dummy bar label" }, { type: "string", role: "tooltip" }, { type: "date", id: "Start" }, { type: "date", id: "End" } ]; const rows = [ ["Washington", null, "George", new Date(1789, 3, 29), new Date(1797, 2, 3)], ["Adams", null, "John", new Date(1797, 2, 3), new Date(1801, 2, 3)], ["Jefferson", null, "Thomas", new Date(1801, 2, 3), new Date(1809, 2, 3)] ]; <Chart chartType="Timeline" data={[columns, ...rows]} width="100%" height="400px" /> Quiero agregar un ícono a un día específico en el gráfico, en la parte superior de la barra (como en la imagen que se muestra a continuación). 
Códigos y caja: https://codesandbox.io/s/rakannimerreact-google-charts-timeline-with-tooltip-ry6yi