OK In progress...

This commit is contained in:
Kolan Sh 2018-01-19 17:58:11 +03:00
parent 15e244ada3
commit ad04ed2e2a
1 changed files with 24 additions and 0 deletions

View File

@ -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 () { }
}
}