Fixed: Unrecognized falsy value of truncateLegends

This commit is contained in:
kimsreng 2022-07-22 16:46:00 +07:00 committed by GitHub
parent ea95aece5a
commit 2aab8dd315
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -39,7 +39,7 @@ export default class BaseChart {
isNavigable: options.isNavigable || 0,
animate: (typeof options.animate !== 'undefined') ? options.animate : 1,
disableEntryAnimation: options.disableEntryAnimation || 0,
truncateLegends: options.truncateLegends || 1
truncateLegends: (typeof options.truncateLegends !== 'undefined') ? options.truncateLegends : 1
};
this.measures = JSON.parse(JSON.stringify(BASE_MEASURES));