don't hide IOB behind COB

This commit is contained in:
AdrianLxM 2018-04-26 03:43:43 +02:00
parent c045a0a41e
commit 3356004065
2 changed files with 2 additions and 2 deletions

View file

@ -156,7 +156,7 @@ public class AutosensData implements DataPointWithLabelInterface {
@Override
public float getSize() {
return 1f;
return 0.5f;
}
@Override

View file

@ -396,7 +396,7 @@ public class GraphData {
cobData = cobArray.toArray(cobData);
cobSeries = new FixedLineGraphSeries<>(cobData);
cobSeries.setDrawBackground(true);
cobSeries.setBackgroundColor(0xB0FFFFFF & MainApp.gc(R.color.cob)); //50%
cobSeries.setBackgroundColor(0x80FFFFFF & MainApp.gc(R.color.cob)); //50%
cobSeries.setColor(MainApp.gc(R.color.cob));
cobSeries.setThickness(3);