OK In progress...

This commit is contained in:
Kolan Sh 2018-01-21 13:40:00 +03:00
parent 56dcbf348d
commit 2e625bf58c
1 changed files with 3 additions and 3 deletions

View File

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