(axis, coord, scale, calendar)
| 65 | |
| 66 | // Unpack position data |
| 67 | function toDataCoords(axis, coord, scale, calendar) { |
| 68 | return coord.map(function(x) { |
| 69 | return axis.d2l(x, 0, calendar) * scale; |
| 70 | }); |
| 71 | } |
| 72 | |
| 73 | var positions = zip3( |
| 74 | toDataCoords(layout.xaxis, data._meshX, scene.dataScale[0], data.xcalendar), |
no outgoing calls
no test coverage detected
searching dependent graphs…