Commit 63325677 authored by Sergey.Luzyanin's avatar Sergey.Luzyanin

Bug 27003 - Не происходит построения диаграммы Bar/Column первого типа после...

Bug 27003 - Не происходит построения диаграммы Bar/Column первого типа после построения диаграммы второго типа

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@58982 954022d7-b5bf-4e40-9824-e11837661b57
parent e6eb64ec
......@@ -1957,6 +1957,25 @@ DrawingObjectsController.prototype =
if(chart_type.grouping !== need_groupping)
chart_type.setGrouping(need_groupping);
if(chart_type.gapWidth !== 150)
{
chart_type.setGapWidth(150);
}
if(BAR_GROUPING_PERCENT_STACKED === need_groupping || BAR_GROUPING_STACKED === need_groupping)
{
if(chart_type.overlap !== 100)
{
chart_type.setOverlap(100);
}
}
else
{
if(chart_type.overlap !== null)
{
chart_type.setOverlap(null);
}
}
axis_by_types = chart_type.getAxisByTypes();
if(chart_type.barDir !== need_bar_dir)
{
......
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