OK In progress...

This commit is contained in:
Kolan Sh 2018-01-22 14:14:20 +03:00
parent 56ed4a5f3e
commit f304e98f80
1 changed files with 6 additions and 1 deletions

View File

@ -199,7 +199,12 @@ namespace CairoChart {
* Gets a copy of the ``Chart``.
*/
public virtual Place copy () {
return new Place.with_place(this);
var p = new Place.with_place(this);
p.zx0 = this.zx0;
p.zy0 = this.zy0;
p.zx1 = this.zx1;
p.zy1 = this.zy1;
return p;
}
/**