From 54b8d430dc4c683daa2e7dc1c3f04dd0458c974b Mon Sep 17 00:00:00 2001 From: Kolan Sh Date: Fri, 19 Jan 2018 18:22:22 +0300 Subject: [PATCH] In progress... --- src/Grid.vala | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/Grid.vala b/src/Grid.vala index ce23a35..abd108a 100644 --- a/src/Grid.vala +++ b/src/Grid.vala @@ -1,7 +1,7 @@ namespace CairoChart { /** - * + * Grid of the {@link Series}. */ public class Grid { /*public enum GridType { @@ -10,17 +10,17 @@ namespace CairoChart { }*/ /** - * + * Color of the ``Grid``. */ public Color color = Color (0, 0, 0, 0.1); /** - * + * Line style of the ``Grid``. */ public Line.Style line_style = Line.Style (); /** - * + * Gets a copy of the ``Grid``. */ public virtual Grid copy () { var grid = new Grid (); @@ -30,7 +30,7 @@ namespace CairoChart { } /** - * + * Constructs a new ``Grid``. */ public Grid () { line_style.dashes = {2, 3};