绘制X坐标轴网格 - 图1

坐标轴配置

  1. xAxis: {
  2. disableGrid:false,
  3. type:'grid',
  4. gridColor:'#CCCCCC',
  5. gridType:'dash',
  6. dashLength:8
  7. },
  8. yAxis: {
  9. disabled:true,
  10. disableGrid:true
  11. }

完整配置

  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. disableGrid:false,
  16. type:'grid',
  17. gridColor:'#CCCCCC',
  18. gridType:'dash',
  19. dashLength:8
  20. },
  21. yAxis: {
  22. disabled:true,
  23. disableGrid:true,
  24. },
  25. width: _self.cWidth*_self.pixelRatio,
  26. height: _self.cHeight*_self.pixelRatio,
  27. extra: {
  28. lineStyle: 'straight'
  29. }
  30. });