1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
|
// This is the complete set of symbols that dygraphs exports for use by
// clients. Exporting a symbols forces the Closure Compiler to preserve it in
// the minified JS (symbols not in this list are mangled).
/*global Dygraph:false, goog:false */
goog.exportSymbol('Dygraph', Dygraph);
goog.exportSymbol('Dygraph.prototype.addAndTrackEvent', Dygraph.prototype.addAndTrackEvent);
goog.exportSymbol('Dygraph.prototype.adjustRoll', Dygraph.prototype.adjustRoll);
goog.exportSymbol('Dygraph.prototype.annotations', Dygraph.prototype.annotations);
goog.exportSymbol('Dygraph.prototype.axisPropertiesForSeries', Dygraph.prototype.axisPropertiesForSeries);
goog.exportSymbol('Dygraph.prototype.clearSelection', Dygraph.prototype.clearSelection);
goog.exportSymbol('Dygraph.prototype.destroy', Dygraph.prototype.destroy);
goog.exportSymbol('Dygraph.prototype.doAnimatedZoom', Dygraph.prototype.doAnimatedZoom);
goog.exportSymbol('Dygraph.prototype.eventToDomCoords', Dygraph.prototype.eventToDomCoords);
goog.exportSymbol('Dygraph.prototype.findClosestPoint', Dygraph.prototype.findClosestPoint);
goog.exportSymbol('Dygraph.prototype.findClosestRow', Dygraph.prototype.findClosestRow);
goog.exportSymbol('Dygraph.prototype.findStackedPoint', Dygraph.prototype.findStackedPoint);
goog.exportSymbol('Dygraph.prototype.getArea', Dygraph.prototype.getArea);
goog.exportSymbol('Dygraph.prototype.getBooleanOption', Dygraph.prototype.getBooleanOption);
goog.exportSymbol('Dygraph.prototype.getColors', Dygraph.prototype.getColors);
goog.exportSymbol('Dygraph.prototype.getFunctionOption', Dygraph.prototype.getFunctionOption);
goog.exportSymbol('Dygraph.prototype.getHighlightSeries', Dygraph.prototype.getHighlightSeries);
goog.exportSymbol('Dygraph.prototype.getLabels', Dygraph.prototype.getLabels);
goog.exportSymbol('Dygraph.prototype.getNumericOption', Dygraph.prototype.getNumericOption);
goog.exportSymbol('Dygraph.prototype.getOption', Dygraph.prototype.getOption);
goog.exportSymbol('Dygraph.prototype.getOptionForAxis', Dygraph.prototype.getOptionForAxis);
goog.exportSymbol('Dygraph.prototype.getPropertiesForSeries', Dygraph.prototype.getPropertiesForSeries);
goog.exportSymbol('Dygraph.prototype.getRowForX', Dygraph.prototype.getRowForX);
goog.exportSymbol('Dygraph.prototype.getSelection', Dygraph.prototype.getSelection);
goog.exportSymbol('Dygraph.prototype.getStringOption', Dygraph.prototype.getStringOption);
goog.exportSymbol('Dygraph.prototype.getValue', Dygraph.prototype.getValue);
goog.exportSymbol('Dygraph.prototype.indexFromSetName', Dygraph.prototype.indexFromSetName);
goog.exportSymbol('Dygraph.prototype.isSeriesLocked', Dygraph.prototype.isSeriesLocked);
goog.exportSymbol('Dygraph.prototype.isZoomed', Dygraph.prototype.isZoomed);
goog.exportSymbol('Dygraph.prototype.numAxes', Dygraph.prototype.numAxes);
goog.exportSymbol('Dygraph.prototype.numColumns', Dygraph.prototype.numColumns);
goog.exportSymbol('Dygraph.prototype.numRows', Dygraph.prototype.numRows);
goog.exportSymbol('Dygraph.prototype.ready', Dygraph.prototype.ready);
goog.exportSymbol('Dygraph.prototype.resetZoom', Dygraph.prototype.resetZoom);
goog.exportSymbol('Dygraph.prototype.resize', Dygraph.prototype.resize);
goog.exportSymbol('Dygraph.prototype.rollPeriod', Dygraph.prototype.rollPeriod);
goog.exportSymbol('Dygraph.prototype.setAnnotations', Dygraph.prototype.setAnnotations);
goog.exportSymbol('Dygraph.prototype.setSelection', Dygraph.prototype.setSelection);
goog.exportSymbol('Dygraph.prototype.setVisibility', Dygraph.prototype.setVisibility);
goog.exportSymbol('Dygraph.prototype.size', Dygraph.prototype.size);
goog.exportSymbol('Dygraph.prototype.toDataCoords', Dygraph.prototype.toDataCoords);
goog.exportSymbol('Dygraph.prototype.toDataXCoord', Dygraph.prototype.toDataXCoord);
goog.exportSymbol('Dygraph.prototype.toDataYCoord', Dygraph.prototype.toDataYCoord);
goog.exportSymbol('Dygraph.prototype.toDomCoords', Dygraph.prototype.toDomCoords);
goog.exportSymbol('Dygraph.prototype.toDomXCoord', Dygraph.prototype.toDomXCoord);
goog.exportSymbol('Dygraph.prototype.toDomYCoord', Dygraph.prototype.toDomYCoord);
goog.exportSymbol('Dygraph.prototype.toPercentXCoord', Dygraph.prototype.toPercentXCoord);
goog.exportSymbol('Dygraph.prototype.toPercentYCoord', Dygraph.prototype.toPercentYCoord);
goog.exportSymbol('Dygraph.prototype.toString', Dygraph.prototype.toString);
goog.exportSymbol('Dygraph.prototype.updateOptions', Dygraph.prototype.updateOptions);
goog.exportSymbol('Dygraph.prototype.visibility', Dygraph.prototype.visibility);
goog.exportSymbol('Dygraph.prototype.xAxisExtremes', Dygraph.prototype.xAxisExtremes);
goog.exportSymbol('Dygraph.prototype.xAxisRange', Dygraph.prototype.xAxisRange);
goog.exportSymbol('Dygraph.prototype.yAxisExtremes', Dygraph.prototype.yAxisExtremes);
goog.exportSymbol('Dygraph.prototype.yAxisRange', Dygraph.prototype.yAxisRange);
goog.exportSymbol('Dygraph.prototype.yAxisRanges', Dygraph.prototype.yAxisRanges);
goog.exportSymbol('Dygraph.Plotters', Dygraph.Plotters);
|