Skip to content

Commit

Permalink
fix: remove useless value
Browse files Browse the repository at this point in the history
  • Loading branch information
yvonneyx committed Aug 27, 2024
1 parent a004a16 commit d62803c
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions packages/g6/src/plugins/edge-filter-lens/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,12 +63,14 @@ export interface EdgeFilterLensOptions extends BasePluginOptions {
*/
minR?: number;
/**
* <zh/> 是否通过滚轮缩放透镜的半径
* <zh/> 缩放透镜半径的方式
* - `'wheel'`:通过滚轮缩放透镜的半径
*
* <en/> Whether to scale the radius of the lens by wheel
* @defaultValue true
* <en/> The way to scale the radius of the lens
* - `'wheel'`: scale the radius of the lens by the wheel
* @defaultValue `'wheel'`
*/
scaleRBy?: 'wheel' | 'unset';
scaleRBy?: 'wheel';
/**
* <zh/> 边显示的条件
* - `'both'`:只有起始节点和目标节点都在透镜中时,边才会显示
Expand Down

0 comments on commit d62803c

Please sign in to comment.