OK In progress...
This commit is contained in:
parent
b46de48825
commit
5db6dfc490
|
@ -152,6 +152,9 @@ namespace CairoChart {
|
||||||
*/
|
*/
|
||||||
public double font_spacing = 5;
|
public double font_spacing = 5;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Constructs a new ``Axis``.
|
||||||
|
*/
|
||||||
public Axis (Chart chart) {
|
public Axis (Chart chart) {
|
||||||
this.chart = chart;
|
this.chart = chart;
|
||||||
title = new Text (chart, "");
|
title = new Text (chart, "");
|
||||||
|
|
|
@ -73,6 +73,7 @@ namespace CairoChart {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Constructs a new ``Range`` with a ``Range`` instance.
|
* Constructs a new ``Range`` with a ``Range`` instance.
|
||||||
|
* @param range ``Range`` instance.
|
||||||
*/
|
*/
|
||||||
public Range.with_range (Range range) {
|
public Range.with_range (Range range) {
|
||||||
this.min = range.min;
|
this.min = range.min;
|
||||||
|
@ -81,6 +82,8 @@ namespace CairoChart {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Constructs a new ``Range`` with absolute coordinates.
|
* 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) {
|
public Range.with_abs (Float128 min, Float128 max) {
|
||||||
this.min = min;
|
this.min = min;
|
||||||
|
@ -89,6 +92,8 @@ namespace CairoChart {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Constructs a new ``Range`` with relative coordinates.
|
* 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) {
|
public Range.with_rel (Float128 min, Float128 range) {
|
||||||
this.min = min;
|
this.min = min;
|
||||||
|
|
Loading…
Reference in New Issue