Last active
September 6, 2018 14:41
-
-
Save apertureless/1d820242f7af0d8985b55e4470597e77 to your computer and use it in GitHub Desktop.
Medium Vue.js & Chart.js
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 id="app"> | |
<div class="container"> | |
<div class="Chart__list"> | |
<div class="Chart"> | |
<h2>Linechart</h2> | |
<line-example></line-example> | |
</div> | |
</div> | |
</div> | |
</div> | |
</template> | |
<script> | |
import LineExample from './components/LineChart.js' | |
export default { | |
name: 'app', | |
components: { | |
LineExample | |
} | |
} | |
</script> | |
<style> | |
#app { | |
font-family: 'Avenir', Helvetica, Arial, sans-serif; | |
-webkit-font-smoothing: antialiased; | |
-moz-osx-font-smoothing: grayscale; | |
text-align: center; | |
color: #2c3e50; | |
margin-top: 60px; | |
} | |
.container { | |
max-width: 800px; | |
margin: 0 auto; | |
} | |
</style> |
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
import {Line} from 'vue-chartjs' | |
export default Line.extend({ | |
mounted () { | |
this.renderChart({ | |
labels: ['January', 'February', 'March', 'April', 'May', 'June', 'July'], | |
datasets: [ | |
{ | |
label: 'Data One', | |
backgroundColor: '#FC2525', | |
data: [40, 39, 10, 40, 39, 80, 40] | |
},{ | |
label: 'Data Two', | |
backgroundColor: '#05CBE1', | |
data: [60, 55, 32, 10, 2, 12, 53] | |
} | |
] | |
}, {responsive: true, maintainAspectRatio: false}) | |
} | |
}) |
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
import {Line} from 'vue-chartjs' | |
export default Line.extend({ | |
data () { | |
return { | |
gradient: null, | |
gradient2: null | |
} | |
}, | |
mounted () { | |
this.gradient = this.$refs.canvas.getContext('2d').createLinearGradient(0, 0, 0, 450) | |
this.gradient2 = this.$refs.canvas.getContext('2d').createLinearGradient(0, 0, 0, 450) | |
this.gradient.addColorStop(0, 'rgba(255, 0,0, 0.5)') | |
this.gradient.addColorStop(0.5, 'rgba(255, 0, 0, 0.25)'); | |
this.gradient.addColorStop(1, 'rgba(255, 0, 0, 0)'); | |
this.gradient2.addColorStop(0, 'rgba(0, 231, 255, 0.9)') | |
this.gradient2.addColorStop(0.5, 'rgba(0, 231, 255, 0.25)'); | |
this.gradient2.addColorStop(1, 'rgba(0, 231, 255, 0)'); | |
this.renderChart({ | |
labels: ['January', 'February', 'March', 'April', 'May', 'June', 'July'], | |
datasets: [ | |
{ | |
label: 'Data One', | |
borderColor: '#FC2525', | |
pointBackgroundColor: 'white', | |
borderWidth: 1, | |
pointBorderColor: 'white', | |
backgroundColor: this.gradient, | |
data: [40, 39, 10, 40, 39, 80, 40] | |
},{ | |
label: 'Data Two', | |
borderColor: '#05CBE1', | |
pointBackgroundColor: 'white', | |
pointBorderColor: 'white', | |
borderWidth: 1, | |
backgroundColor: this.gradient2, | |
data: [60, 55, 32, 10, 2, 12, 53] | |
} | |
] | |
}, {responsive: true, maintainAspectRatio: false}) | |
} | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment