Skip to content

Commit

Permalink
v0.10.4
Browse files Browse the repository at this point in the history
  • Loading branch information
entronad committed May 20, 2022
1 parent e2efe07 commit f2fdb84
Show file tree
Hide file tree
Showing 7 changed files with 492 additions and 508 deletions.
11 changes: 9 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,19 @@
## 0.10.4

**2022-05-20**

- Remove `_mouseIsConnected` checking from chart widget state.
- Expose linearNiceRange and linearNiceNumbers algorithms: https://github.com/entronad/graphic/pull/105

## 0.10.3

**2022-05-2**
**2022-05-02**

- Fix Stack Overflow when comparing modifiers: https://github.com/entronad/graphic/pull/96

## 0.10.2

**2022-05-2**
**2022-05-02**

- Add `coordConv` to `Modifier.modify`'s arguments.

Expand Down
13 changes: 13 additions & 0 deletions DEVLOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4072,6 +4072,19 @@ scaleConv 等似乎是必须要暴露的,否则比如反转xy等都无法实



**animation**

动画主要有三种方式:

1. 类似CSS那种将动画指令直接接在代码后面(重点是定义是直接改变动画值)

2. 定义某个变换transformation,它告诉如何将一个状态过渡到另一个状态(D3,重点是transformation是包含结束状态的)
3. 定义初始和结束状态,以及其中的过渡transition,因此这个 transition 可以更简洁,不用像transformation那样包含结束状态,而且状态和过渡可以更好的分离

data change 只作用于mark,它的机制基于 D3 data join



## TODO

area gradient 超出coord region的问题
Expand Down
Loading

0 comments on commit f2fdb84

Please sign in to comment.