12345678910111213141516171819202122232425262728293031 |
- function CDownloadChart()
- {
- };
- CDownloadChart.prototype = new AFeatureObject();
- CDownloadChart.prototype.setup = function (aFeatureParams)
- {
- if (typeof goApplicationManager.getSelectionController() == "object" && typeof goApplicationManager.getSelectionController().downloadSelectedChartImage == "function")
- {
- goApplicationManager.getSelectionController().downloadSelectedChartImage();
- }
- };
|