In progress...

This commit is contained in:
Kolan Sh 2018-01-19 20:35:22 +03:00
parent 3c295b0bf8
commit ca8340946b
2 changed files with 10 additions and 2 deletions

View File

@ -1,4 +1,8 @@
namespace CairoChart {
/**
*
*/
public class Place {
double _x_min = 0;
double _x_max = 0;
@ -39,7 +43,10 @@ namespace CairoChart {
}
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_max = x_max;
this.y_min = y_min;

View File

@ -78,7 +78,8 @@ namespace CairoChart {
public Text (string text = "",
Font.Style style = Font.Style(),
Color color = Color()) {
Color color = Color()
) {
this.text = text;
this.style = style;
this.color = color;