From: Tuukka Lehtonen Date: Tue, 21 Aug 2018 15:54:52 +0000 (+0300) Subject: Render last known value in time series chart hairline value tip X-Git-Tag: v1.43.0~136^2~405 X-Git-Url: https://gerrit.simantics.org/r/gitweb?p=simantics%2Fplatform.git;a=commitdiff_plain;h=refs%2Fchanges%2F19%2F2019%2F2 Render last known value in time series chart hairline value tip Previously if a history item's data stream did not (yet) contain a value with a timestamp >= than the chart hairline time, the value time on top of the chart would not paint any value at all for that item. The best thing the chart can do in such circumstances to prevent unwanted visual skipping in the UI is to paint the last known sample's value regardless of its endTime value. gitlab #85 Change-Id: I362a19b8699c8c4a96240ddfc3fd68a91d6bbd06 --- diff --git a/bundles/org.simantics.trend/src/org/simantics/trend/impl/Plot.java b/bundles/org.simantics.trend/src/org/simantics/trend/impl/Plot.java index bbeb3e695..d014d6556 100644 --- a/bundles/org.simantics.trend/src/org/simantics/trend/impl/Plot.java +++ b/bundles/org.simantics.trend/src/org/simantics/trend/impl/Plot.java @@ -475,8 +475,16 @@ public class Plot extends TrendGraphicalNode { } if ( vb.getSample()!=null ) { - - if (isLast && vb.hasEndTime() && vb.getEndTimeDouble()