【Echarts使用】之 x/y轴刻度、文字、轴线样式、分割线
隐藏 x/y 轴刻度123456789101112131415161718// x轴xAxis: { type: 'category', splitLine: { show: false }, data: ['11/25', '11/26', '11/27', '11/28', '11/29', '11/30', '12/1'], axisTick: { show: false //隐藏x轴刻度 },},// y轴yAxis: { type: 'category', splitLine: { show: false }, data: ['11/25', '11/26', '11/27', & ...