Lines Matching full:points
32 offset to the y value. For line series, extra data points are inserted through
66 points = datapoints.points,
68 otherpoints = other.datapoints.points,
81 if (i >= points.length)
86 if (points[i] == null) {
89 newpoints.push(points[i + m]);
93 // for lines, we can't use the rest of the points
96 newpoints.push(points[i + m]);
108 // cases where we actually got two points
109 px = points[i + keyOffset];
110 py = points[i + accumulateOffset];
117 newpoints.push(points[i + m]);
128 if (withlines && i > 0 && points[i - ps] != null) {
129 intery = py + (points[i - ps + accumulateOffset] - py) * (qx - px) / (points[i - ps + keyOffset] - px);
133 newpoints.push(points[i + m]);
147 newpoints.push(points[i + m]);
176 datapoints.points = newpoints;