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

坐标轴配置

  1. xAxis: {
  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. disabled:true,
  16. disableGrid:false,
  17. type:'grid',
  18. gridColor:'#CCCCCC',
  19. gridType:'dash',
  20. dashLength:8
  21. },
  22. yAxis: {
  23. gridType:'dash',
  24. gridColor:'#CCCCCC',
  25. dashLength:8,
  26. splitNumber:5,
  27. min:10,
  28. max:180,
  29. format:(val)=>{return val.toFixed(0)+'元'}
  30. },
  31. width: _self.cWidth*_self.pixelRatio,
  32. height: _self.cHeight*_self.pixelRatio,
  33. extra: {
  34. lineStyle: 'straight'
  35. }
  36. });