OK In progress...

This commit is contained in:
Kolan Sh 2018-01-22 15:07:19 +03:00
parent b46de48825
commit 5db6dfc490
2 changed files with 8 additions and 0 deletions

View File

@ -152,6 +152,9 @@ namespace CairoChart {
*/
public double font_spacing = 5;
/**
* Constructs a new ``Axis``.
*/
public Axis (Chart chart) {
this.chart = chart;
title = new Text (chart, "");

View File

@ -73,6 +73,7 @@ namespace CairoChart {
/**
* Constructs a new ``Range`` with a ``Range`` instance.
* @param range ``Range`` instance.
*/
public Range.with_range (Range range) {
this.min = range.min;
@ -81,6 +82,8 @@ namespace CairoChart {
/**
* Constructs a new ``Range`` with absolute coordinates.
* @param min minimum/low limit.
* @param max maximum/high limit.
*/
public Range.with_abs (Float128 min, Float128 max) {
this.min = min;
@ -89,6 +92,8 @@ namespace CairoChart {
/**
* Constructs a new ``Range`` with relative coordinates.
* @param min minimum/low limit.
* @param range length of the ``Range``.
*/
public Range.with_rel (Float128 min, Float128 range) {
this.min = min;