Commit dbd0bb2c authored by Alexander.Trofimov's avatar Alexander.Trofimov

add asc_getType method to sparklineGroup

parent 7aec60c2
...@@ -4659,6 +4659,9 @@ CellArea.prototype = { ...@@ -4659,6 +4659,9 @@ CellArea.prototype = {
} }
return -1; return -1;
}; };
sparklineGroup.prototype.asc_getType = function () {
return this.type;
};
/** @constructor */ /** @constructor */
function sparkline() { function sparkline() {
this.sqref = null; this.sqref = null;
...@@ -6856,6 +6859,8 @@ function getCurrencyFormat(opt_cultureInfo, opt_fraction, opt_currency, opt_curr ...@@ -6856,6 +6859,8 @@ function getCurrencyFormat(opt_cultureInfo, opt_fraction, opt_currency, opt_curr
window['AscCommonExcel'].RangeDataManager = RangeDataManager; window['AscCommonExcel'].RangeDataManager = RangeDataManager;
window['AscCommonExcel'].CellArea = CellArea; window['AscCommonExcel'].CellArea = CellArea;
window['AscCommonExcel'].sparklineGroup = sparklineGroup; window['AscCommonExcel'].sparklineGroup = sparklineGroup;
prot = sparklineGroup.prototype;
prot["asc_getType"] = prot.asc_getType;
window['AscCommonExcel'].sparkline = sparkline; window['AscCommonExcel'].sparkline = sparkline;
window['AscCommonExcel'].TablePart = TablePart; window['AscCommonExcel'].TablePart = TablePart;
window['AscCommonExcel'].AutoFilter = AutoFilter; window['AscCommonExcel'].AutoFilter = AutoFilter;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment