no message

Former-commit-id: fa1070f5fcb35fc52abb413635e934c37355e6c6
Former-commit-id: 776e9b6d9de589b0b8cfddd6fb9c344d2e18e1e0
Former-commit-id: 5a91fe2b8da25531e4f0d322d5cb5ab12b9e22be
This commit is contained in:
李杨
2018-01-28 14:58:34 +08:00
parent 705a2627ce
commit 430c760b13
6 changed files with 148 additions and 31 deletions

View File

@@ -1,3 +1,47 @@
<template>
<div>G2</div>
<div ref="chart" style="height: 100%;"></div>
</template>
<script>
import G2Mixin from './G2'
export default {
mixins: [
G2Mixin
],
methods: {
initHandler () {
const data = [
{ year: '1991', value: 3 },
{ year: '1992', value: 4 },
{ year: '1993', value: 3.5 },
{ year: '1994', value: 5 },
{ year: '1995', value: 4.9 },
{ year: '1996', value: 6 },
{ year: '1997', value: 7 },
{ year: '1998', value: 9 },
{ year: '1999', value: 13 }
]
this.creatChart()
this.chart.source(data)
this.chart.scale('value', {
min: 0
})
this.chart.scale('year', {
range: [0, 1]
})
this.chart.tooltip({
crosshairs: {
type: 'line'
}
})
this.setChartTitle('历史趋势')
this.chart.line().position('year*value')
this.chart.point().position('year*value').size(4).shape('circle').style({
stroke: '#fff',
lineWidth: 1
})
this.chart.render()
}
}
}
</script>