From ad04ed2e2aae94db6941b07c842a1606c6c1b505 Mon Sep 17 00:00:00 2001 From: Kolan Sh Date: Fri, 19 Jan 2018 17:58:11 +0300 Subject: [PATCH] OK In progress... --- src/Label.vala | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/src/Label.vala b/src/Label.vala index 1fd57df..f95cae6 100644 --- a/src/Label.vala +++ b/src/Label.vala @@ -1,12 +1,36 @@ namespace CairoChart { + /** + * Value of the point. + */ public class Label { + /** + * ``Label`` Style. + */ public struct Style { + + /** + * Font style. + */ Font.Style font_style; + + /** + * Frame line style. + */ Line.Style frame_line_style; + + /** + * Background color. + */ Color bg_color; + + /** + * Frame/border color. + */ Color frame_color; } + + private Label () { } } }