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-20 13:11:17 +03:00
|
|
|
Font font_style;
|
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
|
|
|
}
|
|
|
|
}
|