In progress...
This commit is contained in:
parent
3c295b0bf8
commit
ca8340946b
|
@ -1,4 +1,8 @@
|
||||||
namespace CairoChart {
|
namespace CairoChart {
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
*/
|
||||||
public class Place {
|
public class Place {
|
||||||
double _x_min = 0;
|
double _x_min = 0;
|
||||||
double _x_max = 0;
|
double _x_max = 0;
|
||||||
|
@ -39,7 +43,10 @@ namespace CairoChart {
|
||||||
}
|
}
|
||||||
|
|
||||||
public Place (double x_min = 0,
|
public Place (double x_min = 0,
|
||||||
double x_max = 1, double y_min = 0, double y_max = 1) {
|
double x_max = 1,
|
||||||
|
double y_min = 0,
|
||||||
|
double y_max = 1
|
||||||
|
) {
|
||||||
this.x_min = x_min;
|
this.x_min = x_min;
|
||||||
this.x_max = x_max;
|
this.x_max = x_max;
|
||||||
this.y_min = y_min;
|
this.y_min = y_min;
|
||||||
|
|
|
@ -78,7 +78,8 @@ namespace CairoChart {
|
||||||
|
|
||||||
public Text (string text = "",
|
public Text (string text = "",
|
||||||
Font.Style style = Font.Style(),
|
Font.Style style = Font.Style(),
|
||||||
Color color = Color()) {
|
Color color = Color()
|
||||||
|
) {
|
||||||
this.text = text;
|
this.text = text;
|
||||||
this.style = style;
|
this.style = style;
|
||||||
this.color = color;
|
this.color = color;
|
||||||
|
|
Loading…
Reference in New Issue