|
@@ -357,7 +357,7 @@ export const columnOptionsChart = (
|
|
|
el += `<p style="text-align: left;">
|
|
|
<span style="display:inline-block;margin-right:5px;border-radius:4px;width:12px;height:8px;background-image: linear-gradient(to left,
|
|
|
${item.color.colorStops[0].color}, ${item.color.colorStops[1].color})"></span>
|
|
|
- <span>${item.seriesName}:${item.seriesName == '环比增长' ? (item.value * 100 || 0) + '%' : item.value || 0}</span>
|
|
|
+ <span>${item.seriesName}:${item.value.toFixed(2)}</span>
|
|
|
</p>`;
|
|
|
});
|
|
|
el += `</div>`;
|