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

add range to params

parent 4f73be77
...@@ -2458,7 +2458,7 @@ ...@@ -2458,7 +2458,7 @@
/** Рисует спарклайны */ /** Рисует спарклайны */
WorksheetView.prototype._drawSparklines = function(drawingCtx, range, offsetX, offsetY) { WorksheetView.prototype._drawSparklines = function(drawingCtx, range, offsetX, offsetY) {
this.objectRender.drawSparkLineGroup(this.model.sparklineGroups, drawingCtx); this.objectRender.drawSparkLineGroups(drawingCtx, this.model.sparklineGroups, range);
}; };
/** Рисует ячейки таблицы */ /** Рисует ячейки таблицы */
......
...@@ -2024,10 +2024,12 @@ function DrawingObjects() { ...@@ -2024,10 +2024,12 @@ function DrawingObjects() {
} }
}; };
_this.drawSparkLineGroup = function(oSparkLineGroup, oDrawingContext) _this.drawSparkLineGroups = function(oDrawingContext, oSparkLineGroups, range)
{ {
for(var i = 0; i < oSparkLineGroups.arrSparklineGroup.length; ++i) {
}, }
};
_this.rebuildChartGraphicObjects = function(data) _this.rebuildChartGraphicObjects = function(data)
{ {
......
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