sea-chart 0.0.46 → 0.0.47

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.
@@ -526,6 +526,7 @@ BaseUtils.formatPieChartData = (data, chart, tables) => {
526
526
  let rows = [];
527
527
  data.forEach((item, index) => {
528
528
  const value = item.value;
529
+ item.name = item.name + ' ';
529
530
  if (value >= threshold) {
530
531
  item.percent = String(Number.parseFloat(value / sum * 100).toFixed(1)) + '%';
531
532
  const color = _BaseUtils.getPieColor(column, index, item);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sea-chart",
3
- "version": "0.0.46",
3
+ "version": "0.0.47",
4
4
  "main": "./dist/index.js",
5
5
  "dependencies": {
6
6
  "@antv/data-set": "0.11.8",