You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, dummy tracks can only be used in a linear layout. Based on disucssion in #946 ideally we'd also support circular layouts as well. Here's a first attempt at supporting circular dummy tracks.
Challenges:
Tracks in a circular layout get compiled into a HiGlass spec differently than in a linear layout: Unlike when a view layout is linear, each of these Gosling tracks will not have a corresponding HiGlass view. Instead they will become HiGlass tracks within the same view.
Using a serial arrangement, tracks can be next to each other. We would want the same behavior with dummy tracks. See below for an example.
Implementation approach:
In general, the circular dummy track should be drawn with d3arc, which is also used in the brush track (brush-track.ts).
The text was updated successfully, but these errors were encountered:
Currently, dummy tracks can only be used in a linear layout. Based on disucssion in #946 ideally we'd also support circular layouts as well. Here's a first attempt at supporting circular dummy tracks.
Challenges:
serial
arrangement, tracks can be next to each other. We would want the same behavior with dummy tracks. See below for an example.Implementation approach:
In general, the circular dummy track should be drawn with
d3arc
, which is also used in the brush track (brush-track.ts
).The text was updated successfully, but these errors were encountered: