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 {
return x1 - x0;
}
protected set {
set {
x1 = x0 + value;
}
}
@ -45,7 +45,7 @@ namespace CairoChart {
get {
return y1 - y0;
}
protected set {
set {
y1 = y0 + value;
}
}

View File

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