Skip to content

Commit

Permalink
Merge pull request #20491 from apache/fix/type/markLine-symbolOffset
Browse files Browse the repository at this point in the history
fix(type): markLine `symbolOffset` can be a 2d array for both symbols
  • Loading branch information
Ovilia authored Nov 15, 2024
2 parents 11a3cb7 + 421069f commit 23efa66
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/component/marker/MarkLineModel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ export interface MarkLineOption extends MarkerOption,
symbol?: string[] | string
symbolSize?: number[] | number
symbolRotate?: number[] | number
symbolOffset?: number | string | (number | string)[]
symbolOffset?: number | string | (number | string)[] | (number | string)[][]

/**
* Precision used on statistic method
Expand Down

0 comments on commit 23efa66

Please sign in to comment.