no message
Former-commit-id: 3f4e59a3f2158c33f186f61e983ed9d44250f4f5 Former-commit-id: 3e0685df0095c20d6aa1b98adf60151c2612139c Former-commit-id: 8cfa58bc02611e2f9683e342323222a0a547dfaf
This commit is contained in:
@@ -16,10 +16,10 @@ export default {
|
||||
this.creatChart()
|
||||
// 本组件的特殊设置
|
||||
this.chart.source(this.data)
|
||||
this.chart.scale('value', {
|
||||
this.chart.scale('y', {
|
||||
min: 0
|
||||
})
|
||||
this.chart.scale('year', {
|
||||
this.chart.scale('x', {
|
||||
range: [0, 1]
|
||||
})
|
||||
this.chart.tooltip({
|
||||
@@ -27,8 +27,8 @@ export default {
|
||||
type: 'line'
|
||||
}
|
||||
})
|
||||
this.chart.line().position('year*value')
|
||||
this.chart.point().position('year*value').size(4).shape('circle').style({
|
||||
this.chart.line().position('x*y')
|
||||
this.chart.point().position('x*y').size(4).shape('circle').style({
|
||||
stroke: '#fff',
|
||||
lineWidth: 1
|
||||
})
|
||||
|
||||
@@ -16,11 +16,11 @@ export default {
|
||||
this.creatChart()
|
||||
// 本组件的特殊设置
|
||||
this.chart.source(this.data, {
|
||||
month: {
|
||||
x: {
|
||||
range: [0, 1]
|
||||
}
|
||||
})
|
||||
this.chart.line().position('month*value').shape('hv')
|
||||
this.chart.line().position('x*y').shape('hv')
|
||||
// 渲染图表
|
||||
this.chart.render()
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user