隐藏Y轴(不含网格) - 图1

坐标轴配置

  1. yAxis: {
  2. disabled:true
  3. }

完整配置

  1. new uCharts({
  2. $this:_self,
  3. canvasId: canvasId,
  4. type: 'line',
  5. fontSize:11,
  6. legend:true,
  7. dataLabel:true,
  8. dataPointShape:true,
  9. background:'#FFFFFF',
  10. pixelRatio:_self.pixelRatio,
  11. categories: chartData.categories,
  12. series: chartData.series,
  13. animation: true,
  14. xAxis: {
  15. type:'grid',
  16. gridColor:'#CCCCCC',
  17. gridType:'dash',
  18. dashLength:8
  19. },
  20. yAxis: {
  21. disabled:true,
  22. gridType:'dash',
  23. gridColor:'#CCCCCC',
  24. dashLength:8,
  25. splitNumber:5,
  26. min:10,
  27. max:180,
  28. format:(val)=>{return val.toFixed(0)+'元'}
  29. },
  30. width: _self.cWidth*_self.pixelRatio,
  31. height: _self.cHeight*_self.pixelRatio,
  32. extra: {
  33. lineStyle: 'straight'
  34. }
  35. });