(axis, coord, scale, calendar)
| 78 | |
| 79 | // Unpack position data |
| 80 | function toDataCoords(axis, coord, scale, calendar) { |
| 81 | return coord.map(function(x) { |
| 82 | return axis.d2l(x, 0, calendar) * scale; |
| 83 | }); |
| 84 | } |
| 85 | |
| 86 | var positions = zip3( |
| 87 | toDataCoords(layout.xaxis, data._meshX, scene.dataScale[0], data.xcalendar), |
no outgoing calls
no test coverage detected
searching dependent graphs…