cube-js/cube

fill missing dates with other values than zero

开放

#4,912 创建于 2022年7月14日

 (1 条评论) (0 个反应) (0 位负责人)Rust (1,965 个派生)batch import
help wanted

仓库指标

星标
 (19,563 个星标)
PR 合并指标
 (平均合并 5天 16小时) (30 天内合并 138 个 PR)

描述

Is your feature request related to a problem? Please describe. When executing resultset.series(), fillMissingDates is true by default, and the values of the missing dates are filled with 0. In some scenarios, I have a data with 0 as values, and it makes it hard to identify which is actual date and which is missed date in the result. An ability to set the missing date's value to null or to -1 it could be useful to some charts such as nivo (in nivo value: null is considered empty)

Describe the solution you'd like

  1. Add another option missingDateValue
  2. fillMissingDate will be either boolean or an object describing { enabled: boolean, value: number | null | etc.. }

贡献者指南