OK In progress...
This commit is contained in:
parent
47bc860e3d
commit
1161b6a75b
|
@ -36,7 +36,7 @@ namespace CairoChart {
|
||||||
/**
|
/**
|
||||||
* ``Axis`` scale type.
|
* ``Axis`` scale type.
|
||||||
*/
|
*/
|
||||||
public enum ScaleType {
|
public enum Scale {
|
||||||
/**
|
/**
|
||||||
* Linear scale.
|
* Linear scale.
|
||||||
*/
|
*/
|
||||||
|
@ -51,7 +51,7 @@ namespace CairoChart {
|
||||||
/**
|
/**
|
||||||
* Scale type.
|
* Scale type.
|
||||||
*/
|
*/
|
||||||
public ScaleType scale_type;
|
public Scale scale;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* ``Axis`` position.
|
* ``Axis`` position.
|
||||||
|
@ -122,7 +122,7 @@ namespace CairoChart {
|
||||||
axis.range.max = this.range.max;
|
axis.range.max = this.range.max;
|
||||||
axis.range.min = this.range.min;
|
axis.range.min = this.range.min;
|
||||||
axis.position = this.position;
|
axis.position = this.position;
|
||||||
axis.scale_type = this.scale_type;
|
axis.scale = this.scale;
|
||||||
axis.title = this.title.copy();
|
axis.title = this.title.copy();
|
||||||
axis.dtype = this.dtype;
|
axis.dtype = this.dtype;
|
||||||
axis.nrecords = this.nrecords;
|
axis.nrecords = this.nrecords;
|
||||||
|
|
Loading…
Reference in New Issue