In progress...

This commit is contained in:
Kolan Sh 2018-01-15 16:18:47 +03:00
parent 328a579ad7
commit dcfb85126e
2 changed files with 6 additions and 6 deletions

View File

@ -110,13 +110,13 @@ namespace CairoChart {
time = dt.format(time_format) + dsec_str;
}
public virtual void calc_rec_sizes (Chart chart, out double max_rec_width, out double max_rec_height, bool is_horizontal = true) {
public virtual void calc_rec_sizes (Chart chart, out double max_rec_width, out double max_rec_height, bool horizontal = true) {
max_rec_width = max_rec_height = 0;
for (var i = 0; i < nrecords; ++i) {
Float128 x = (int64)(zoom_min + (zoom_max - zoom_min) / nrecords * i) + 1.0/3.0;
switch (type) {
case Axis.Type.NUMBERS:
var text = new Text (format.printf((LongDouble)x) + (is_horizontal ? "_" : ""), font_style);
var text = new Text (format.printf((LongDouble)x) + (horizontal ? "_" : ""), font_style);
var sz = text.get_size(chart.context);
max_rec_width = double.max (max_rec_width, sz.width);
max_rec_height = double.max (max_rec_height, sz.height);
@ -127,13 +127,13 @@ namespace CairoChart {
var h = 0.0;
if (date_format != "") {
var text = new Text (date + (is_horizontal ? "_" : ""), font_style);
var text = new Text (date + (horizontal ? "_" : ""), font_style);
var sz = text.get_size(chart.context);
max_rec_width = double.max (max_rec_width, sz.width);
h = sz.height;
}
if (time_format != "") {
var text = new Text (time + (is_horizontal ? "_" : ""), font_style);
var text = new Text (time + (horizontal ? "_" : ""), font_style);
var sz = text.get_size(chart.context);
max_rec_width = double.max (max_rec_width, sz.width);
h += sz.height;

View File

@ -251,7 +251,7 @@ namespace CairoChart {
if (nzoom_series_show == 1) joint_x = joint_y = false;
// Join and calc X-axes
for (var si = series.length - 1, nskip = 0; si >=0; --si) {
for (var si = series.length - 1, nskip = 0; si >= 0; --si) {
var s = series[si];
if (!s.zoom_show) continue;
if (nskip != 0) {--nskip; continue;}
@ -278,7 +278,7 @@ namespace CairoChart {
}
// Join and calc Y-axes
for (var si = series.length - 1, nskip = 0; si >=0; --si) {
for (var si = series.length - 1, nskip = 0; si >= 0; --si) {
var s = series[si];
if (!s.zoom_show) continue;
if (nskip != 0) {--nskip; continue;}