OK In progress...
This commit is contained in:
parent
9ce7f7b174
commit
ca6392a6d9
|
@ -209,6 +209,7 @@ namespace CairoChart {
|
|||
date = dt.format(date_format);
|
||||
var dsec_str =
|
||||
("%."+(dsec_signs.to_string())+"Lf").printf((LongDouble)(x - (int64)x)).offset(1);
|
||||
if (time_format != "")
|
||||
time = dt.format(time_format) + dsec_str;
|
||||
}
|
||||
|
||||
|
@ -526,9 +527,7 @@ namespace CairoChart {
|
|||
switch (dtype) {
|
||||
case Axis.DType.NUMBERS: text_t.show(); break;
|
||||
case Axis.DType.DATE_TIME:
|
||||
if (date_format != "") text_t.show();
|
||||
chart.ctx.move_to (crpt, print_y - dtf);
|
||||
if (time_format != "") time_text_t.show();
|
||||
text_t.show(); chart.ctx.move_to (crpt, print_y - dtf); time_text_t.show();
|
||||
break;
|
||||
}
|
||||
// 6. Draw grid lines to the ser.axis_y.place.zmin.
|
||||
|
@ -556,9 +555,7 @@ namespace CairoChart {
|
|||
switch (dtype) {
|
||||
case Axis.DType.NUMBERS: text_t.show(); break;
|
||||
case Axis.DType.DATE_TIME:
|
||||
if (date_format != "") text_t.show();
|
||||
chart.ctx.move_to (crpt, print_y - dtf);
|
||||
if (time_format != "") time_text_t.show();
|
||||
text_t.show(); chart.ctx.move_to (crpt, print_y - dtf); time_text_t.show();
|
||||
break;
|
||||
}
|
||||
// 6. Draw grid lines to the ser.axis_y.place.zmax.
|
||||
|
|
|
@ -94,6 +94,7 @@ namespace CairoChart {
|
|||
* Show ``Text``.
|
||||
*/
|
||||
public virtual void show () {
|
||||
if (text == "") return;
|
||||
chart.ctx.select_font_face(font.family,
|
||||
font.slant,
|
||||
font.weight);
|
||||
|
|
Loading…
Reference in New Issue