29 lines
321 B
Vala
29 lines
321 B
Vala
namespace CairoChart {
|
|
|
|
/**
|
|
* ``LabelStyle`` Style.
|
|
*/
|
|
public struct LabelStyle {
|
|
|
|
/**
|
|
* Font style.
|
|
*/
|
|
Font font_style;
|
|
|
|
/**
|
|
* Frame line style.
|
|
*/
|
|
LineStyle frame_line_style;
|
|
|
|
/**
|
|
* Background color.
|
|
*/
|
|
Color bg_color;
|
|
|
|
/**
|
|
* Frame/border color.
|
|
*/
|
|
Color frame_color;
|
|
}
|
|
}
|