|
@@ -4,8 +4,6 @@
|
|
|
<header class="chart-header" @click="openNew">
|
|
|
<span
|
|
|
class="chart-title"
|
|
|
- @click.stop
|
|
|
- @dblclick="copyText"
|
|
|
:style="chartInfo.ChartThemeStyle?`
|
|
|
text-align:${JSON.parse(chartInfo.ChartThemeStyle).titleOptions.align};
|
|
|
font-size:${JSON.parse(chartInfo.ChartThemeStyle).titleOptions.style.fontSize}px;
|
|
@@ -15,6 +13,10 @@
|
|
|
{{ language === 'en'?(chartInfo.ChartNameEn||chartInfo.ChartName): chartInfo.ChartName}}
|
|
|
</span>
|
|
|
|
|
|
+ <div class="copy-icon" @click.stop="copyText">
|
|
|
+ <img src="@/assets/img/copy.png" alt="" width="20" height="20">
|
|
|
+ </div>
|
|
|
+
|
|
|
</header>
|
|
|
<template v-if="haveData">
|
|
|
<div
|