()
| 87 | }; |
| 88 | |
| 89 | const yDomain = (): {}|undefined => { |
| 90 | if (options.zoomToFit) { |
| 91 | return {'zero': false}; |
| 92 | } else if (options.yAxisDomain != null) { |
| 93 | return {'domain': options.yAxisDomain}; |
| 94 | } |
| 95 | return undefined; |
| 96 | }; |
| 97 | |
| 98 | const spec: VisualizationSpec = { |
| 99 | 'width': options.width || getDefaultWidth(drawArea), |
no outgoing calls
no test coverage detected
searching dependent graphs…