OK In progress...
This commit is contained in:
parent
6bbce0fd5e
commit
5c8904d502
|
@ -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;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -23,7 +23,7 @@ namespace CairoChart {
|
||||||
get {
|
get {
|
||||||
return high - low;
|
return high - low;
|
||||||
}
|
}
|
||||||
protected set {
|
set {
|
||||||
high = low + value;
|
high = low + value;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue