-
| 
         I would like to confirm a guess: Cell marks are using an ordinal scale and if I supply dates for the x-axis with a dataset that are missing some dates, these dates won't be rendered. Even if I use  I created a solution in a notebook and would like to know if there are any other alternatives: Cell marks act different as line marks. Correct? Thanks!  | 
  
Beta Was this translation helpful? Give feedback.
Replies: 5 comments 2 replies
-
| 
         It looks like that notebook is still private. Can you make sure it is either public or unlisted?  | 
  
Beta Was this translation helpful? Give feedback.
-
| 
         Ouups. Done.  | 
  
Beta Was this translation helpful? Give feedback.
-
| 
         
 Given how dates are encoded, interval: 1 would specify 1 millisecond, which then generates 8 billion bands for 3 months :)  | 
  
Beta Was this translation helpful? Give feedback.
-
| 
         It does indeed, @Fil. Thanks. And then any time interval can be used as described here: (why did I try this only on the x-axis 🤷🏻♂️ ?)  | 
  
Beta Was this translation helpful? Give feedback.
-
| 
         Somewhat related follow-up question: 
 Is there anything built-in that would aggregate the metrics for an interval? example: calculating the sum or average of all metric values for this interval? I have done this before with data pre-processing, just wondering if there is a more elegant solution available.  | 
  
Beta Was this translation helpful? Give feedback.
x: { interval: "day" },should workGiven how dates are encoded, interval: 1 would specify 1 millisecond, which then generates 8 billion bands for 3 months :)