From d2859060042206a2df43536d6869200b88e0cdb6 Mon Sep 17 00:00:00 2001 From: Kolan Sh Date: Tue, 23 Jan 2018 19:16:20 +0300 Subject: [PATCH] OK In progress... --- src/Chart.vala | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Chart.vala b/src/Chart.vala index 56e8d5a..730c00f 100644 --- a/src/Chart.vala +++ b/src/Chart.vala @@ -13,17 +13,17 @@ namespace CairoChart { /** * Plot area bounds. */ - public Area plarea = new Area.with_abs(0, 0, 1, 1); + public Area plarea = new 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). */ - public Area zoom = new Area.with_abs(0, 0, 1, 1); + public Area zoom = new Area(); /** * Cairo ``Context`` of the Drawing Area.