()
| 78 | }; |
| 79 | |
| 80 | const xDomain = (): {}|undefined => { |
| 81 | if (options.zoomToFit) { |
| 82 | return {'zero': false}; |
| 83 | } else if (options.xAxisDomain != null) { |
| 84 | return {'domain': options.xAxisDomain}; |
| 85 | } |
| 86 | return undefined; |
| 87 | }; |
| 88 | |
| 89 | const yDomain = (): {}|undefined => { |
| 90 | if (options.zoomToFit) { |
no outgoing calls
no test coverage detected
searching dependent graphs…