File tree 3 files changed +13
-3
lines changed
3 files changed +13
-3
lines changed Original file line number Diff line number Diff line change @@ -162,12 +162,14 @@ export default {
162
162
}
163
163
} ,
164
164
{
165
- title : '条形图' ,
165
+ title : '条形图-X轴Y轴翻转 ' ,
166
166
data : simpleData ,
167
167
settings : {
168
168
direction : 'row' ,
169
169
xAxisLabelType : [ 'zh' ] ,
170
- xAxisLabelDigits : 0
170
+ xAxisLabelDigits : 0 ,
171
+ yAxisInverse : true ,
172
+ xAxisInverse : true
171
173
}
172
174
} ,
173
175
{
Original file line number Diff line number Diff line change 658
658
| yAxisScale | 是否是脱离 0 值比例。设置成 true 后坐标刻度不会强制包含零刻度 | Boolean | - | 参见[ 文档] ( https://www.echartsjs.com/option.html#yAxis.scale ) |
659
659
| yAxisName | 坐标轴名称 | Array | - | 参见[ 文档] ( https://www.echartsjs.com/option.html#yAxis.name ) |
660
660
| percentage | 是否是百分比堆叠柱状图,通常结合 ` yAxisLabelType ` 一起使用 | Boolean | ` true ` /` false ` | 默认 ` false ` |
661
+ | xAxisInverse | X轴方向反向| Boolean | ` true ` /` false ` | 默认 ` false ` 参见[ 文档] ( https://www.echartsjs.com/zh/option.html#xAxis.inverse ) |
662
+ | yAxisInverse | Y轴方向反向| Boolean | ` true ` /` false ` | 默认 ` false ` 参见[ 文档] ( https://www.echartsjs.com/zh/option.html#yAxis.inverse ) |
Original file line number Diff line number Diff line change @@ -209,6 +209,7 @@ class BarChart extends BaseChart {
209
209
} = settings
210
210
211
211
// 默认柱状图
212
+ // TODO 此处注意值与命名语义相反,true代表是条形图,false是柱图
212
213
const isBar = direction !== 'column' && direction === 'row'
213
214
214
215
const defaultMeaAxisType = secondMeaAxis !== null ? [ 'normal' , 'normal' ] : [ 'normal' ]
@@ -240,6 +241,11 @@ class BarChart extends BaseChart {
240
241
241
242
const series = BarChart . getBarSeries ( data , settings , isBar )
242
243
244
+ // 处理X轴和Y轴翻转
245
+ const { yAxisInverse, xAxisInverse } = settings
246
+ if ( yAxisInverse !== undefined ) yAxis . forEach ( i => { i . inverse = yAxisInverse } )
247
+ if ( xAxisInverse !== undefined ) xAxis . forEach ( i => { i . inverse = xAxisInverse } )
248
+
243
249
// build echarts options
244
250
const options = {
245
251
grid,
@@ -251,7 +257,7 @@ class BarChart extends BaseChart {
251
257
series
252
258
}
253
259
254
- console . log ( options )
260
+ // console.log(options)
255
261
256
262
return options
257
263
}
You can’t perform that action at this time.
0 commit comments