OK In progress...

This commit is contained in:
Kolan Sh 2018-01-20 14:51:26 +03:00
parent 6bbce0fd5e
commit 5c8904d502
2 changed files with 3 additions and 3 deletions

View File

@ -33,7 +33,7 @@ namespace CairoChart {
get { get {
return x1 - x0; return x1 - x0;
} }
protected set { set {
x1 = x0 + value; x1 = x0 + value;
} }
} }
@ -45,7 +45,7 @@ namespace CairoChart {
get { get {
return y1 - y0; return y1 - y0;
} }
protected set { set {
y1 = y0 + value; y1 = y0 + value;
} }
} }

View File

@ -23,7 +23,7 @@ namespace CairoChart {
get { get {
return high - low; return high - low;
} }
protected set { set {
high = low + value; high = low + value;
} }
} }