Cairo-Chart/src/Label.vala

37 lines
423 B
Vala
Raw Normal View History

2018-01-08 23:33:13 +03:00
namespace CairoChart {
2018-01-19 17:58:11 +03:00
/**
* Value of the point.
*/
2018-01-08 23:33:13 +03:00
public class Label {
2018-01-19 17:58:11 +03:00
/**
* ``Label`` Style.
*/
2018-01-08 23:33:13 +03:00
public struct Style {
2018-01-19 17:58:11 +03:00
/**
* Font style.
*/
2018-01-08 23:33:13 +03:00
Font.Style font_style;
2018-01-19 17:58:11 +03:00
/**
* Frame line style.
*/
2018-01-08 23:33:13 +03:00
Line.Style frame_line_style;
2018-01-19 17:58:11 +03:00
/**
* Background color.
*/
2018-01-08 23:33:13 +03:00
Color bg_color;
2018-01-19 17:58:11 +03:00
/**
* Frame/border color.
*/
2018-01-08 23:33:13 +03:00
Color frame_color;
}
2018-01-19 17:58:11 +03:00
private Label () { }
2018-01-08 23:33:13 +03:00
}
}