In progress...

This commit is contained in:
Kolan Sh 2018-01-18 18:51:06 +03:00
parent a8d3939ff6
commit 3aaa53e96c
1 changed files with 5 additions and 5 deletions

View File

@ -29,17 +29,17 @@ namespace CairoChart {
{ x = 0, y = 0, width = 1, height = 1 }; { x = 0, y = 0, width = 1, height = 1 };
/** /**
* Cairo Context of the Drawing Area. * Cairo ``Context`` of the Drawing Area.
*/ */
public Cairo.Context ctx = null; public Cairo.Context ctx = null;
/** /**
* Background Color. * Background ``Color``.
*/ */
public Color bg_color = Color(1, 1, 1); public Color bg_color = Color(1, 1, 1);
/** /**
* Border Color. * Border ``Color``.
*/ */
public Color border_color = Color(0, 0, 0, 0.3); public Color border_color = Color(0, 0, 0, 0.3);
@ -74,7 +74,7 @@ namespace CairoChart {
public bool joint_y { get; protected set; default = false; } public bool joint_y { get; protected set; default = false; }
/** /**
* Joint/common axis color. * Joint/common {@link Axis} ``Color``.
*/ */
public Color joint_color = Color (0, 0, 0, 1); public Color joint_color = Color (0, 0, 0, 1);
@ -104,8 +104,8 @@ namespace CairoChart {
/** /**
* TODO: remove all indent fields / evaluate automatically. * TODO: remove all indent fields / evaluate automatically.
* @deprecated 0.1.1
*/ */
[Version (deprecated = true)]
public double title_indent = 4; public double title_indent = 4;
/** /**