Commit 6ed69467 authored by Sergey.Luzyanin's avatar Sergey.Luzyanin Committed by Alexander.Trofimov

клип

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@56901 954022d7-b5bf-4e40-9824-e11837661b57
parent d16ad6da
...@@ -7587,12 +7587,20 @@ CChartSpace.prototype = ...@@ -7587,12 +7587,20 @@ CChartSpace.prototype =
graphics.SaveGrState(); graphics.SaveGrState();
graphics.SetIntegerGrid(false); graphics.SetIntegerGrid(false);
graphics.transform3(this.transform, false); graphics.transform3(this.transform, false);
graphics.AddClipRect(-pix, -pix, this.extX+pix, this.extY+pix);
//graphics.AddClipRect(0, 0, this.extX, this.extY); var ln_width;
if(this.pen && isRealNumber(this.pen.w))
{
ln_width = this.pen.w/36000;
}
else
{
ln_width = 0;
}
graphics.AddClipRect(-ln_width, -ln_width, this.extX+ln_width, this.extY+ln_width);
this.chartObj.draw(this, graphics); this.chartObj.draw(this, graphics);
graphics.reset(); graphics.reset();
// graphics.SetIntegerGrid(intGrid);
if(this.chart) if(this.chart)
{ {
......
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