Quartz/Chartbuilder

Disable `date` parsing?

roberthuttinger opened this issue · 2 comments

Tried setting Ln.~ 43360 supportedInputTypes.date = false but if I paste content in, the data is still parsed as a date if the col header is date

Is this set somewhere else?

Thanks!

supportedInputTypes is not a Chartbuilder setting, it's something used by an imported module.

If you want to disable that functionality you'll have to remove this line

var datePattern = /^(date|time|year)$/i;

aha! parseDelimInput that makes sense but you never know the syntax. Thanks for helping find that! Exactly what was needed!