()
| 73 | activeIntervals: ParallelAxisInterval[] = []; |
| 74 | |
| 75 | getAreaSelectStyle(): ParallelAreaSelectStyleProps { |
| 76 | return makeStyleMapper( |
| 77 | [ |
| 78 | ['fill', 'color'], |
| 79 | ['lineWidth', 'borderWidth'], |
| 80 | ['stroke', 'borderColor'], |
| 81 | ['width', 'width'], |
| 82 | ['opacity', 'opacity'] |
| 83 | // Option decal is in `DecalObject` but style.decal is in `PatternObject`. |
| 84 | // So do not transfer decal directly. |
| 85 | ] |
| 86 | )(this.getModel('areaSelectStyle')) as ParallelAreaSelectStyleProps; |
| 87 | } |
| 88 | |
| 89 | /** |
| 90 | * The code of this feature is put on AxisModel but not ParallelAxis, |
no test coverage detected