Last active
August 1, 2019 22:21
-
-
Save firminochangani/49c4c0cf1c820c3a9189b637cb76d7aa to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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