@carbon/charts-vue 1.6.3 → 1.6.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/charts-vue.umd.js CHANGED
@@ -12685,7 +12685,7 @@ var model_ChartModel = /** @class */ (function () {
12685
12685
  };
12686
12686
  ChartModel.prototype.exportToCSV = function () {
12687
12687
  var data = this.getTabularDataArray().map(function (row) {
12688
- return row.map(function (column) { return "\"" + column + "\""; });
12688
+ return row.map(function (column) { return "\"" + (column === '–' ? '–' : column) + "\""; });
12689
12689
  });
12690
12690
  var csvString = '', csvData = '';
12691
12691
  data.forEach(function (d, i) {