Cairo-Chart/src/Label.vala

29 lines
315 B
Vala
Raw Normal View History

2018-01-08 23:33:13 +03:00
namespace CairoChart {
2018-01-19 17:58:11 +03:00
/**
2018-01-20 13:11:17 +03:00
* ``LabelStyle`` Style.
2018-01-19 17:58:11 +03:00
*/
2018-01-20 13:11:17 +03:00
public struct LabelStyle {
2018-01-08 23:33:13 +03:00
2018-01-19 17:58:11 +03:00
/**
2018-01-20 13:11:17 +03:00
* Font style.
2018-01-19 17:58:11 +03:00
*/
2018-01-22 14:54:58 +03:00
Font font;
2018-01-19 17:58:11 +03:00
2018-01-20 13:11:17 +03:00
/**
* Frame line style.
*/
LineStyle frame_line_style;
2018-01-19 17:58:11 +03:00
2018-01-20 13:11:17 +03:00
/**
* Background color.
*/
Color bg_color;
2018-01-19 17:58:11 +03:00
2018-01-20 13:11:17 +03:00
/**
* Frame/border color.
*/
Color frame_color;
2018-01-08 23:33:13 +03:00
}
}