Home | History | Annotate | Download | only in js

Lines Matching refs:lineIndex

714     for (var lineIndex = 0, line; line = lines[lineIndex]; ++lineIndex) {
721 upsideClosestLineIndex = lineIndex;
730 downsideClosestLineIndex = lineIndex;
805 var lineIndex = !this.stackedGraph_ ? 0 :
808 var line = this.plotData_[lineIndex];
838 function legendLabel(lineIndex, opt_labelText) {
839 return '<span style="color:' + self.getDataColor(lineIndex) + '">' +
840 (opt_labelText || self.dataDescriptions_[lineIndex]) +
843 function valuesAtCursor(lineIndex, pointIndex, unitsY, yValue) {
844 return '<span style="color:' + self.getDataColor(lineIndex) + '">' +
845 self.plotData_[lineIndex][pointIndex][0] + ' ' + self.unitsX_ + ': ' +
846 addCommas(self.plotData_[lineIndex][pointIndex][1].toFixed(2)) + ' ' +
851 this.infoBox_.rows[0].label.innerHTML = legendLabel(lineIndex);
853 lineIndex, indexValueX, this.unitsY_, this.coordinates.yValue(positionY));