Skip to content

Instantly share code, notes, and snippets.

View clandau's full-sized avatar

Courtney Landau clandau

View GitHub Profile
@clandau
clandau / Timeline.vue
Created August 14, 2020 11:46
example of a Google Charts Timeline using vue-google-charts
<template>
<div id="timeline">
<GChart
type="Timeline"
:settings="{ packages: ['timeline'] }"
:data="timelineData"
:options="timelineOptions"
/>
</div>
</template>