Hide the dateBar but don't set it as gone, this prevents charts from changing size when swiping.
This commit is contained in:
parent
de6ce1a3d7
commit
5a019c238a
|
@ -234,7 +234,7 @@ public abstract class AbstractChartFragment extends AbstractGBFragment {
|
||||||
}
|
}
|
||||||
|
|
||||||
protected void showDateBar(boolean show) {
|
protected void showDateBar(boolean show) {
|
||||||
getChartsHost().getDateBar().setVisibility(show ? View.VISIBLE : View.GONE);
|
getChartsHost().getDateBar().setVisibility(show ? View.VISIBLE : View.INVISIBLE);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
Loading…
Reference in New Issue