OK In progress...
This commit is contained in:
parent
15e244ada3
commit
ad04ed2e2a
|
@ -1,12 +1,36 @@
|
||||||
namespace CairoChart {
|
namespace CairoChart {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Value of the point.
|
||||||
|
*/
|
||||||
public class Label {
|
public class Label {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* ``Label`` Style.
|
||||||
|
*/
|
||||||
public struct Style {
|
public struct Style {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Font style.
|
||||||
|
*/
|
||||||
Font.Style font_style;
|
Font.Style font_style;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Frame line style.
|
||||||
|
*/
|
||||||
Line.Style frame_line_style;
|
Line.Style frame_line_style;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Background color.
|
||||||
|
*/
|
||||||
Color bg_color;
|
Color bg_color;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Frame/border color.
|
||||||
|
*/
|
||||||
Color frame_color;
|
Color frame_color;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private Label () { }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue