UNPKG

@swimlane/ngx-charts

Version:

Declarative Charting Framework for Angular2 and beyond!

19 lines 393 B
"use strict"; /** * Formats a label given a date, number or string. * * @export * @param {*} label * @returns {string} */ function formatLabel(label) { if (label instanceof Date) { label = label.toLocaleDateString(); } else { label = label.toLocaleString(); } return label; } exports.formatLabel = formatLabel; //# sourceMappingURL=label.helper.js.map