@@ -11,7 +11,7 @@ const { local, build, vduiLocal, vduiBuild, toggleTable, toggleLabels, toggleSta
1111const dataset = ref ([
1212 {
1313 name: " Long name serie" ,
14- series: [- 90 , - 80 , - 60 , - 30 , 0 , 30 , 60 , 80 , 90 , 80 , 60 , 30 , 0 , - 30 , - 60 , - 80 , - 90 ],
14+ series: [- 80 , - 60 , - 30 , 0 , 30 , 60 , 80 , 60 , 30 , 0 , - 30 , - 60 , - 80 ],
1515 comments: [" " , " " , " " , " " , " This is a comment that can be long, or that can be short but it depends." ],
1616 type: " line" ,
1717 smooth: true ,
@@ -143,6 +143,9 @@ const model = ref([
143143 { key: ' chart.grid.labels.yAxis.gap' , def: 12 , min: 0 , max: 200 , type: ' number' },
144144 { key: ' chart.grid.labels.yAxis.labelWidth' , def: 40 , min: 0 , max: 100 , type: ' number' },
145145 { key: ' chart.grid.labels.yAxis.showBaseline' , def: true , type: ' checkbox' },
146+ { key: ' chart.grid.labels.yAxis.scaleMin' , def: - 90 , type: ' number' , min: - 1000 , max: 1000 },
147+ { key: ' chart.grid.labels.yAxis.scaleMax' , def: 90 , type: ' number' , min: - 1000 , max: 1000 },
148+
146149 { key: ' chart.grid.labels.xAxis.showBaseline' , def: true , type: ' checkbox' },
147150 { key: ' chart.grid.labels.zeroLine.show' , def: true , type: ' checkbox' },
148151
@@ -282,7 +285,7 @@ const config = computed(() => {
282285 labels: {
283286 ... c .line .labels ,
284287 formatter : ({value, config}) => {
285- console .log (config)
288+ // console.log(config)
286289 return ` f - ${ value} `
287290 }
288291 }
0 commit comments