3195d0abcf676f2aaabcd382e562574c6ad117cd4c77bb36595a0ac6d9ec33a8c08812fcfa702f826061186a39d67ae2da6f4a745137f3409acd492c5280f0 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215
  1. # 0.2.18-alpha (2020-10-30)
  2. ### Lock Dependencies
  3. - **@jiaminghi/c-render:** lock `^0.4.3`.
  4. # 0.2.17-alpha (2020-07-02)
  5. ### Bug Fixes
  6. - **numberText:** Fix: When rendering, 0 is ignored.
  7. # 0.2.16-alpha (2020-06-16)
  8. ### Perfect
  9. - **numberText:** Add number formatter.
  10. # 0.2.15-alpha (2020-05-06)
  11. ### Perfect
  12. - **pie:** Optimization percent calculation.
  13. # 0.2.14-alpha (2020-05-02)
  14. ### Perfect
  15. - **numberText:** Graph of numberText support `\n` to **line feed**.
  16. # 0.2.13-alpha (2020-04-15)
  17. ### Perfect
  18. - **Axis:** Perfect axis calculation of min & max.
  19. # 0.2.12-alpha (2020-01-15)
  20. ### Perfect
  21. - **Pie:** Optimized percentage accuracy calculation.
  22. # 0.2.11-alpha (2020-01-05)
  23. ### Bug Fixes
  24. - **util->deepMerge:** Object property references are the same in some cases.
  25. # 0.2.10-alpha (2019-12-25)
  26. ### Bug Fixes
  27. - **Pie:** `PercentToFixed` exception display.
  28. # 0.2.9-alpha (2019-11-26)
  29. ### Perfect
  30. - **Bar:** Bar supports independent color, each bar can be set in different colors.
  31. ```javascript
  32. const config = {
  33. someConfig,
  34. series: [
  35. {
  36. type: 'bar',
  37. /**
  38. * @description Independent color mode
  39. * When set to true, independent color mode is enabled
  40. * @type {Boolean}
  41. * @default independentColor = false
  42. */
  43. independentColor: true,
  44. /**
  45. * @description Independent colors
  46. * Only effective when independent color mode is enabled
  47. * Default value is the same as the color in the root configuration
  48. * Two-dimensional color array can produce gradient colors
  49. * @type {Array}
  50. * @example independentColor = ['#fff', '#000']
  51. * @example independentColor = [['#fff', '#000'], '#000']
  52. */
  53. independentColors: [],
  54. }
  55. ]
  56. }
  57. ```
  58. # 0.2.8-alpha (2019-10-24)
  59. ### Perfect
  60. - **setOption:** **setOption** adds the `animationEnd` parameter which skips unfinished animation when updating the chart state. It is recommended to enable animationEnd when frequently updating the chart state (frequently updating the chart state may cause the animation data to continue to grow and cause memory leaks).
  61. ```javascript
  62. /**
  63. * @description Set chart option
  64. * @param {Object} option Chart option
  65. * @param {Boolean} animationEnd Execute animationEnd
  66. * @return {Undefined} No return
  67. */
  68. Charts.prototype.setOption = function (option, animationEnd = false) {
  69. }
  70. ```
  71. # 0.2.7-alpha (2019-09-03)
  72. ### Perfect
  73. - **axis:** Optimize irregular syntax.
  74. # 0.2.6-alpha (2019-09-03)
  75. ### Perfect
  76. - **axis:** Optimize irregular syntax.
  77. # 0.2.5-alpha (2019-08-29)
  78. ### Perfect
  79. - **babel:** Upgrade babel compilation mode.
  80. # 0.2.4-alpha (2019-08-28)
  81. ### Perfect
  82. - **babel:** Upgrade babel compilation mode.
  83. # 0.2.3-alpha (2019-08-28)
  84. ### Bug Fixes
  85. - **deepMerge:** deepMerge method cannot merge `Array` when recursive.
  86. # 0.2.2-alpha (2019-06-13)
  87. ### Bug Fixes
  88. - **axis:** The label position is abnormal when the label is rotated.
  89. - **gauge:** An exception caused by inconsistent number of gradient colors.
  90. # 0.2.1-alpha (2019-06-13)
  91. ### Perfect
  92. - **core:** Configurable render level.
  93. # 0.2.0-alpha (2019-06-13)
  94. ### New
  95. - **legend:** Add legend extend.
  96. # 0.1.3-alpha (2019-06-11)
  97. ### Bug Fixes
  98. - **bar:** An exception caused by calculate gradientParams.
  99. # 0.1.2-alpha (2019-06-11)
  100. ### Bug Fixes
  101. - **axis:** An exception caused by calculate inteval.
  102. # 0.1.1-alpha (2019-06-11)
  103. ### Perfect
  104. - **core:** Optimize the update process.
  105. - **config:** Add a function of `changeDefaultConfig` to change the default configuration.
  106. - **ES5:** Use babel to transcode to `ES5`.
  107. # 0.1.0-alpha (2019-06-05)
  108. ### New
  109. - **gauge:** Add `gauge` chart.
  110. ### Perfect
  111. - **Core:** Optimize the update process.
  112. # 0.0.4-alpha (2019-05-31)
  113. ### Perfect
  114. - **Perfect:** Some optimization.
  115. # 0.0.3-alpha (2019-05-30)
  116. ### Bug Fixes
  117. - **pie:** Abnormal calculation of radius under `roseType: true`.
  118. # 0.0.2-alpha (2019-05-30)
  119. ### Perfect
  120. - **pie:** Optimized Label `formatter`.
  121. - **pie:** Add the `roseSort` configuration.
  122. # 0.0.1-alpha (2019-05-30)
  123. ### Perfect
  124. - **prototype:** Add prototype function `resize`.
  125. # 0.0.0-alpha (2019-05-29)
  126. ### Release
  127. - **alpha:** First beta with `line`,`bar`,`pie`,`radar` charts.