Commit dcb2ce6b authored by Dmitry.Vikulov's avatar Dmitry.Vikulov Committed by Alexander.Trofimov

minor

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@48508 954022d7-b5bf-4e40-9824-e11837661b57
parent 98c5d65a
......@@ -2914,9 +2914,11 @@ function DrawingObjects() {
if ( changedRange || metrics ) {
if (changedRange) {
if ( obj.isChart() && changedRange ) {
obj.graphicObject.chart.range.intervalObject = changedRange;
_this.calcChartInterval(obj.graphicObject.chart);
obj.graphicObject.chart.rebuildSeries();
obj.graphicObject.recalculate();
}
if (metrics) {
obj.from.col = metrics.from.col;
......
......@@ -760,11 +760,12 @@ DrawingObjectsController.prototype =
getSelectionState: function()
{
// TODO
return new Object();
return (this.selectedObjects.length > 0) ? new Object() : null;
},
setSelectionState: function(state)
{
// TODO
var st = state;
}
};
......
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