OK In progress...

This commit is contained in:
Kolan Sh 2018-01-23 19:16:20 +03:00
parent e11e8466a1
commit d285906004
1 changed files with 3 additions and 3 deletions

View File

@ -13,17 +13,17 @@ namespace CairoChart {
/** /**
* Plot area bounds. * Plot area bounds.
*/ */
public Area plarea = new Area.with_abs(0, 0, 1, 1); public Area plarea = new Area();
/** /**
* Current evaluated plot area. * Current evaluated plot area.
*/ */
public Area evarea = new Area.with_abs(0, 0, 1, 1); public Area evarea = new Area();
/** /**
* Zoom area limits (relative coordinates: 0-1). * Zoom area limits (relative coordinates: 0-1).
*/ */
public Area zoom = new Area.with_abs(0, 0, 1, 1); public Area zoom = new Area();
/** /**
* Cairo ``Context`` of the Drawing Area. * Cairo ``Context`` of the Drawing Area.