Skip to content

Commit

Permalink
build: 7.3.0发布
Browse files Browse the repository at this point in the history
  • Loading branch information
liihuu committed May 28, 2021
1 parent cee261b commit d4c61f4
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/en/changelog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Change Log
## 7.3.0
`To be released`
`2021-05-28`
+ 🆕 Add api `scrollByDistance`, `scrollToRealTime`, `scrollToPosition`, `zoomAtCoordinate` and `zoomAtPosition`.
+ 🆕 Add api `setPaneOptions` for setting windows.
+ 🆕 Add logarithmic coordinates for the axis, `yAxis.type: log`.
Expand Down
2 changes: 1 addition & 1 deletion docs/zh-CN/changelog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# 更新日志
## 7.3.0
`待发布`
`2021-05-28`
+ 🆕 新增api `scrollByDistance``scrollToRealTime``scrollToPosition``zoomAtCoordinate``zoomAtPosition`
+ 🆕 新增api `setPaneOptions`,用于设置窗口。
+ 🆕 坐标轴新增对数坐标,`yAxis.type: log`
Expand Down
4 changes: 2 additions & 2 deletions types/Chart.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,8 @@ export declare interface Chart {
setPaneOptions(options: PaneOptions): void;
convertFromPixel(coordinate: CoordinatePoint | CoordinatePoint[], finder: ConvertFinder): ConvertValue | ConvertValue[];
convertToPixel(value: ConvertValue | ConvertValue[], finder: ConvertFinder): CoordinatePoint | CoordinatePoint[];
subscribeAction (type: ChartActionType, callback: (params: any) => void): void;
unsubscribeAction (type: ChartActionType, callback?: (params: any) => void): void;
subscribeAction(type: ChartActionType, callback: (params: any) => void): void;
unsubscribeAction(type: ChartActionType, callback?: (params: any) => void): void;
getConvertPictureUrl(includeTooltip?: boolean, includeOverlay?: boolean, type?: PictureType, backgroundColor?: string): string;
resize(): void;
}

0 comments on commit d4c61f4

Please sign in to comment.