Commit 774b088a authored by SergeyLuzyanin's avatar SergeyLuzyanin

fix Bug 34685

parent be7e776c
......@@ -9364,6 +9364,12 @@ CChartSpace.prototype.getChartSizes = function()
}
}
}
if(oChartSize.w <= 0){
oChartSize.w = 1;
}
if(oChartSize.h <= 0){
oChartSize.h = 1;
}
return oChartSize;
};
......
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