Created
February 28, 2017 13:00
-
-
Save apertureless/3dc1de267d4b8bc830e47de214c445b3 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
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