We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7330bcc commit 75667ceCopy full SHA for 75667ce
crates/viewer/re_view_time_series/src/point_visualizer_system.rs
@@ -190,10 +190,7 @@ impl SeriesPointsSystem {
190
re_tracing::profile_scope!("primary", &data_result.entity_path.to_string());
191
192
let entity_path = &data_result.entity_path;
193
- let query = re_chunk_store::RangeQuery::new(view_query.timeline, time_range)
194
- // We must fetch data with extended bounds, otherwise the query clamping would
195
- // cut-off the data early at the edge of the view.
196
- .include_extended_bounds(true);
+ let query = re_chunk_store::RangeQuery::new(view_query.timeline, time_range);
197
198
let results = range_with_blueprint_resolved_data(
199
ctx,
0 commit comments