chart/cl.draw.grid.js

  1. /**
  2. * Copyright (c) 2018-present clchart Contributors.
  3. *
  4. * This source code is licensed under the MIT license found in the
  5. * LICENSE file in the root directory of this source tree.
  6. *
  7. */
  8. // 以下是 ClLineKBar 的实体定义
  9. import {
  10. _drawBegin,
  11. _drawEnd,
  12. _drawHline,
  13. _drawVline
  14. } from '../util/cl.draw'
  15. import {
  16. initCommonInfo
  17. } from '../chart/cl.chart.init'
  18. // 创建时必须带入父类,后面的运算定位都会基于父节点进行;
  19. // 这个类仅仅是画图, 因此需要把可以控制的rect传入进来
  20. /**
  21. * Class representing ClDrawGrid
  22. * @export
  23. * @class ClDrawGrid
  24. */
  25. export default class ClDrawGrid {
  26. /**
  27. * Creates an instance of ClDrawGrid.
  28. * @param {Object} father
  29. * @param {Object} rectMain
  30. */
  31. constructor (father, rectMain) {
  32. initCommonInfo(this, father)
  33. this.rectMain = rectMain
  34. this.axisX = father.config.axisX
  35. this.axisY = father.config.axisY
  36. }
  37. /**
  38. * paint
  39. * @memberof ClDrawGrid
  40. */
  41. onPaint () {
  42. _drawBegin(this.context, this.color.grid)
  43. _drawHline(this.context, this.rectMain.left, this.rectMain.left + this.rectMain.width, this.rectMain.top)
  44. if (this.axisY.lines > 0) {
  45. const offy = this.rectMain.height / (this.axisY.lines + 1)
  46. for (let i = 0; i < this.axisY.lines; i++) {
  47. _drawHline(this.context, this.rectMain.left, this.rectMain.left + this.rectMain.width, this.rectMain.top + Math.round((i + 1) * offy))
  48. }
  49. }
  50. if (this.axisX.display !== 'none') {
  51. _drawHline(this.context, this.rectMain.left, this.rectMain.left + this.rectMain.width, this.rectMain.top + this.rectMain.height)
  52. }
  53. // 画纵坐标
  54. if (this.axisX.lines > 0) {
  55. const offx = this.rectMain.width / (this.axisX.lines + 1)
  56. for (let i = 0; i < this.axisX.lines; i++) {
  57. _drawVline(this.context, this.rectMain.left + Math.round((i + 1) * offx), this.rectMain.top, this.rectMain.top + this.rectMain.height)
  58. }
  59. }
  60. if (this.axisPlatform !== 'phone') {
  61. _drawVline(this.context, this.rectMain.left, this.rectMain.top, this.rectMain.top + this.rectMain.height)
  62. _drawVline(this.context, this.rectMain.left + this.rectMain.width, this.rectMain.top, this.rectMain.top + this.rectMain.height)
  63. }
  64. _drawEnd(this.context)
  65. }
  66. }