(val, exp)
| 816 | |
| 817 | it('provides exponents correctly for z data', function (done) { |
| 818 | function expFmt(val, exp) { |
| 819 | return ( |
| 820 | val + |
| 821 | '×10\u200b<tspan style="font-size:70%" dy="-0.6em">' + |
| 822 | (exp < 0 ? MINUS_SIGN + -exp : exp) + |
| 823 | '</tspan><tspan dy="0.42em">\u200b</tspan>' |
| 824 | ); |
| 825 | } |
| 826 | Plotly.newPlot( |
| 827 | gd, |
| 828 | [ |
no outgoing calls
no test coverage detected
searching dependent graphs…