Commit 61768e3a authored by Igor.Zotov's avatar Igor.Zotov Committed by Alexander.Trofimov

ограничение по максимальной длине элемента легенды(горизонтальное расположение)

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@50245 954022d7-b5bf-4e40-9824-e11837661b57
parent 9993f5e4
......@@ -722,6 +722,10 @@ function calcAllMargin(isFormatCell,isformatCellScOy,minX,maxX,minY,maxY, chart)
//+ высота легенды
if(bar._otherProps._key_halign == 'top' || bar._otherProps._key_halign == 'bottom')
{
for(var i = 0; i < bar._otherProps._key.length; i++)
{
bar._otherProps._key[i] = cutLabels((0.9*chartCanvas.width - widthLine), bar._otherProps._key[i]);
}
var font = getFontProperties("key");
var props = getMaxPropertiesText(context,font,bar._otherProps._key);
//длинные подписи, или их большое количество разделяем на несколько строк
......
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