Skip to content

Instantly share code, notes, and snippets.

@flowck
Last active August 1, 2019 22:21
Show Gist options
  • Save flowck/49c4c0cf1c820c3a9189b637cb76d7aa to your computer and use it in GitHub Desktop.
Save flowck/49c4c0cf1c820c3a9189b637cb76d7aa to your computer and use it in GitHub Desktop.
<template>
<div class="plot-container">
<!-- Svg element -->
<svg :width="size.width + margin.left + margin.right" :height="size.height + margin.top + margin.bottom">
<!-- Wrap plot elements -->
<g :transform="`translate(${margin.left}, 10)`">
<!-- Group axes -->
<g class="plot__axes">
<!-- Axes -->
<g class="plot__axes__x" :transform="`translate(0, ${size.height})`"></g>
<g class="plot__axes__y"></g>
</g>
</g>
</svg>
</div>
</template>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment