Make data checks in `marks` optional
jwildfire opened this issue · 2 comments
jwildfire commented
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.
jwildfire commented
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)
jwildfire commented
Just ran in to this again - it is annoying.