RhoInc/Webcharts

Make data checks in `marks` optional

jwildfire opened this issue · 2 comments

Allow user to disable the data checks in marks. This can be useful when columns are created as part of custom callbacks, but aren't available in the original data when init() is called.

Think we just need to add an option (e.g. this.config.marks.checkColumns with default = true) and then tweak this line to:

if (this.config.marks & this.config.marks.testColumns)

Just ran in to this again - it is annoying.