OK In progress...

This commit is contained in:
Kolan Sh 2018-01-19 16:26:46 +03:00
parent c3acff1a4c
commit 40ca272825
1 changed files with 1 additions and 3 deletions

View File

@ -359,11 +359,9 @@ namespace CairoChart {
series[si].draw_vertical_axis (si, ref nskip);
}
protected virtual void draw_series () {
for (var si = 0; si < series.length; ++si) {
var s = series[si];
foreach (var s in series)
if (s.zoom_show && s.points.length != 0)
s.draw();
}
}
}
}