Skip to content

Commit

Permalink
build: 7.3.1发布
Browse files Browse the repository at this point in the history
  • Loading branch information
liihuu committed May 31, 2021
1 parent e897b21 commit bc26193
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 4 deletions.
7 changes: 6 additions & 1 deletion docs/en/changelog.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
# Change Log
#7.3.1
`2021-05-31`
💄 Optimize the display of `yAxis.type:log`.


## 7.3.0
`2021-05-28`
+ 🆕 Add api `scrollByDistance`, `scrollToRealTime`, `scrollToPosition`, `zoomAtCoordinate` and `zoomAtPosition`.
Expand All @@ -7,7 +12,7 @@
+ 🆕 Add style configuration, `candle.priceMark.last.text.borderRadius`, `technicalIndicator.lastValueMark.text.borderRadius`,
`crosshair.horizontal.text.borderRadius`, `crosshair.vertical.text.borderRadius`.
+ 🆕 Add touchpad scrolling support.
+ 💪 Api `creatTechnicalIndicator`, window parameters can take effect in real time.
+ 💪 Api `createTechnicalIndicator`, window parameters can take effect in real time.
+ 💪 Api `setDataSpace` and `setOffsetRightSpace` able to refresh in real time.


Expand Down
7 changes: 6 additions & 1 deletion docs/zh-CN/changelog.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
# 更新日志
#7.3.1
`2021-05-31`
💄 优化`yAxis.type:log`显示。


## 7.3.0
`2021-05-28`
+ 🆕 新增api `scrollByDistance``scrollToRealTime``scrollToPosition``zoomAtCoordinate``zoomAtPosition`
Expand All @@ -7,7 +12,7 @@
+ 🆕 新增配置,`candle.priceMark.last.text.borderRadius``technicalIndicator.lastValueMark.text.borderRadius`
`crosshair.horizontal.text.borderRadius``crosshair.vertical.text.borderRadius`
+ 🆕 新增触摸板滚动支持。
+ 💪 Api `creatTechnicalIndicator`,窗口参数可以实时生效。
+ 💪 Api `createTechnicalIndicator`,窗口参数可以实时生效。
+ 💪 Api `setDataSpace``setOffsetRightSpace`能够实时重绘。


Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "klinecharts",
"version": "7.3.0",
"version": "7.3.1",
"description": "Lightweight k-line chart built with html5 canvas",
"main": "index.js",
"types": "./types/index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion src/component/YAxis.js
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,7 @@ export default class YAxis extends Axis {
break
}
case YAxisType.LOG: {
return index10(value, true)
return index10(value)
}
default: {
return value
Expand Down

0 comments on commit bc26193

Please sign in to comment.