OK In progress...

This commit is contained in:
Kolan Sh 2018-01-21 13:27:47 +03:00
parent 2f0aa310b9
commit 56dcbf348d
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.with_abs(0, 0, 1, 1); public Area evarea = new Area();
/** /**
* Zoom area limits (relative coordinates: 0.0-1.0). * Zoom area limits (relative coordinates: 0.0-1.0).
*/ */
public Area zoom = new Area.with_abs(0, 0, 1, 1); public Area zoom = new Area();
/** /**
* Plot area bounds. * Plot area bounds.
*/ */
public Area plarea = new Area.with_abs(0, 0, 1, 1); public Area plarea = new Area();
/** /**
* Cairo ``Context`` of the Drawing Area. * Cairo ``Context`` of the Drawing Area.